summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-12-06 17:43:07 +0000
committerFrancois Pons <fpons@mandriva.com>2001-12-06 17:43:07 +0000
commitbf14431431b0d3996cbed13b27e483f4fd777d89 (patch)
tree3b2effe311050a4e39d30bbd721a7491b9aa1e07 /urpm.pm
parent86f61ad423dbf3b0e45ed770628fea640b673dc8 (diff)
downloadurpmi-bf14431431b0d3996cbed13b27e483f4fd777d89.tar
urpmi-bf14431431b0d3996cbed13b27e483f4fd777d89.tar.gz
urpmi-bf14431431b0d3996cbed13b27e483f4fd777d89.tar.bz2
urpmi-bf14431431b0d3996cbed13b27e483f4fd777d89.tar.xz
urpmi-bf14431431b0d3996cbed13b27e483f4fd777d89.zip
3.0 of urpmi.
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm740
1 files changed, 281 insertions, 459 deletions
diff --git a/urpm.pm b/urpm.pm
index 2581f1b5..939872cb 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -3,7 +3,7 @@ package urpm;
use strict;
use vars qw($VERSION @ISA);
-$VERSION = '1.6';
+$VERSION = '3.0';
=head1 NAME
@@ -15,9 +15,6 @@ urpm - Mandrake perl tools to handle urpmi database
my $urpm = new urpm;
- $urpm->read_depslist();
- $urpm->read_provides();
- $urpm->read_compss();
$urpm->read_config();
=head1 DESCRIPTION
@@ -70,13 +67,10 @@ sub new {
config => "/etc/urpmi/urpmi.cfg",
skiplist => "/etc/urpmi/skip.list",
instlist => "/etc/urpmi/inst.list",
- depslist => "/var/lib/urpmi/depslist.ordered",
- provides => "/var/lib/urpmi/provides",
- compss => "/var/lib/urpmi/compss",
statedir => "/var/lib/urpmi",
cachedir => "/var/cache/urpmi",
media => undef,
- params => new rpmtools,
+ params => new rpmtools('sense'),
sync => \&sync_webfetch, #- first argument is directory, others are url to fetch.
@@ -354,8 +348,6 @@ sub add_medium {
$urpm->try_mounting($dir) or $urpm->{log}(_("unable to access medium \"%s\"", $name)), return;
#- check if directory is somewhat normalized so that we can get back hdlist,
- #- check it that case if depslist, compss and provides file are also
- #- provided.
if (!($with_hdlist && -e "$dir/$with_hdlist") && $dir =~ /RPMS([^\/]*)\/*$/) {
foreach my $rdir (qw(Mandrake/base ../Mandrake/base ..)) {
-e "$dir/$_/hdlist$1.cz" and $with_hdlist = "$_/hdlist$1.cz", last;
@@ -388,10 +380,9 @@ sub remove_media {
$media{$_->{name}} = 1; #- keep it mind this one has been removed
#- remove file associated with this medium.
- #- this is the hdlist and the list files.
- unlink "$urpm->{statedir}/synthesis.$_->{hdlist}";
- unlink "$urpm->{statedir}/$_->{hdlist}";
- unlink "$urpm->{statedir}/$_->{list}";
+ foreach ($_->{hdlist}, $_->{list}, "synthesis.$_->{hdlist}", "descriptions.$_->{name}", "$_->{name}.cache") {
+ unlink "$urpm->{statedir}/$_";
+ }
} else {
push @result, $_; #- not removed so keep it
}
@@ -399,23 +390,11 @@ sub remove_media {
#- check if some arguments does not correspond to medium name.
foreach (keys %media) {
- if ($media{$_}) {
- #- when a medium is removed, depslist and others need to be recomputed.
- $urpm->{modified} = 1;
- } else {
+ unless ($media{$_}) {
$urpm->{error}(_("trying to remove inexistent medium \"%s\"", $_));
}
}
- #- special case if there is no more media registered.
- #- there is no need to recompute the hdlist and the files
- #- can be safely removed.
- if ($urpm->{modified} && @result == 0) {
- unlink $urpm->{depslist};
- unlink $urpm->{provides};
- unlink $urpm->{compss};
- }
-
#- restore newer media list.
$urpm->{media} = \@result;
}
@@ -442,17 +421,36 @@ sub select_media {
}
sub build_synthesis_hdlist {
- my ($urpm, $medium) = @_;
+ my ($urpm, $medium, $use_parsehdlist) = @_;
- #- building synthesis file using parsehdlist output, need 3.2-1mdk or above.
unlink "$urpm->{statedir}/synthesis.$medium->{hdlist}";
- if (system "parsehdlist --compact --info --provides --requires '$urpm->{statedir}/$medium->{hdlist}' | gzip >'$urpm->{statedir}/synthesis.$medium->{hdlist}'") {
- unlink "$urpm->{statedir}/synthesis.$medium->{hdlist}";
- $urpm->{error}(_("unable to build synthesis file for medium \"%s\"", $medium->{name}));
- return;
+ if ($use_parsehdlist) {
+ #- building synthesis file using parsehdlist output, need 4.0-1mdk or above.
+ if (system "parsehdlist --compact --info --provides --requires '$urpm->{statedir}/$medium->{hdlist}' | gzip >'$urpm->{statedir}/synthesis.$medium->{hdlist}'") {
+ unlink "$urpm->{statedir}/synthesis.$medium->{hdlist}";
+ $urpm->{error}(_("unable to build synthesis file for medium \"%s\"", $medium->{name}));
+ return;
+ }
} else {
- $urpm->{log}(_("built hdlist synthesis file for medium \"%s\"", $medium->{name}));
+ #- building synthesis file using internal params.
+ local *F;
+ open F, "| gzip >'$urpm->{statedir}/synthesis.$medium->{hdlist}'";
+ foreach my $p (@{$urpm->{params}{depslist}}) {
+ $p->{medium} eq $medium or next;
+ foreach (qw(provides requires)) {
+ @{$p->{$_} || []} and print F join('@', $p->{name}, $_, @{$p->{$_} || []}) . "\n";
+ }
+ print F join('@',
+ $p->{name}, 'info', "$p->{name}-$p->{version}-$p->{release}.$p->{arch}",
+ $p->{serial} || 0, $p->{size} || 0, $p->{group}, $p->{file} ? ($p->{file}) : ()). "\n";
+ }
+ unless (close F) {
+ unlink "$urpm->{statedir}/synthesis.$medium->{hdlist}";
+ $urpm->{error}(_("unable to build synthesis file for medium \"%s\"", $medium->{name}));
+ return;
+ }
}
+ $urpm->{log}(_("built hdlist synthesis file for medium \"%s\"", $medium->{name}));
1;
}
@@ -469,13 +467,20 @@ sub update_media {
#- avoid trashing existing configuration in this case.
$urpm->{media} or return;
+ #- list of medium to update their synthesis once a pass with provides/requires will be made.
+ my @rebuild_synthesis_of_media;
+
#- examine each medium to see if one of them need to be updated.
#- if this is the case and if not forced, try to use a pre-calculated
#- hdlist file else build it from rpms files.
foreach my $medium (@{$urpm->{media}}) {
#- take care of modified medium only or all if all have to be recomputed.
- #- but do not take care of removable media for all.
$medium->{ignore} and next;
+
+ #- and create synthesis file associated if it does not already exists...
+ -s "$urpm->{statedir}/synthesis.$medium->{hdlist}" or push @rebuild_synthesis_of_media, $medium;
+
+ #- but do not take care of removable media for all.
$medium->{modified} ||= $options{all} && $medium->{url} !~ /removable/ or next;
#- list of rpm files for this medium, only available for local medium where
@@ -495,7 +500,7 @@ sub update_media {
system("cp", "-a", "$dir/../descriptions", "$urpm->{statedir}/descriptions.$medium->{name}");
#- if the source hdlist is present and we are not forcing using rpms file
- if ($options{force} < 2 && $medium->{with_hdlist} && -e "$dir/$medium->{with_hdlist}") {
+ if (!$options{force} && $medium->{with_hdlist} && -e "$dir/$medium->{with_hdlist}") {
unlink "$urpm->{cachedir}/partial/$medium->{hdlist}";
system("cp", "-a", "$dir/$medium->{with_hdlist}", "$urpm->{cachedir}/partial/$medium->{hdlist}");
@@ -565,10 +570,10 @@ sub update_media {
#- try to sync (copy if needed) local copy after restored the previous one.
unlink "$urpm->{cachedir}/partial/$basename";
if ($medium->{synthesis}) {
- $options{force} >= 2 || ! -e "$urpm->{statedir}/synthesis.$medium->{hdlist}" or
+ $options{force} || ! -e "$urpm->{statedir}/synthesis.$medium->{hdlist}" or
system("cp", "-a", "$urpm->{statedir}/synthesis.$medium->{hdlist}", "$urpm->{cachedir}/partial/$basename");
} else {
- $options{force} >= 2 || ! -e "$urpm->{statedir}/$medium->{hdlist}" or
+ $options{force} || ! -e "$urpm->{statedir}/$medium->{hdlist}" or
system("cp", "-a", "$urpm->{statedir}/$medium->{hdlist}", "$urpm->{cachedir}/partial/$basename");
}
eval {
@@ -606,7 +611,7 @@ sub update_media {
#- make sure group and other does not have any access to this file.
unless ($error) {
- #- sort list file contents according to depslist.ordered file.
+ #- sort list file contents according to id.
my %list;
if (@files) {
foreach (@files) {
@@ -625,7 +630,7 @@ sub update_media {
close F or $medium->{synthesis} = 1; #- try hdlist as a synthesis (for probe)
}
if ($medium->{synthesis}) {
- if (my @founds = $urpm->parse_synthesis("$urpm->{cachedir}/partial/$medium->{hdlist}")) {
+ if (my @founds = $urpm->parse_synthesis($medium)) {
#- it appears hdlist file is a synthesis one in fact.
#- parse_synthesis returns all full name of package read from it.
foreach (@founds) {
@@ -665,7 +670,6 @@ sub update_media {
} else {
#- make sure to rebuild base files and clean medium modified state.
$medium->{modified} = 0;
- $urpm->{modified} = 1;
#- but use newly created file.
unlink "$urpm->{statedir}/$medium->{hdlist}";
@@ -680,62 +684,53 @@ sub update_media {
system("mv", "$urpm->{cachedir}/partial/$medium->{list}", "$urpm->{statedir}/$medium->{list}");
#- and create synthesis file associated.
- $medium->{synthesis} or $urpm->build_synthesis_hdlist($medium);
+ $medium->{synthesis} or push @rebuild_synthesis_of_media, $medium;
}
}
- #- build base files (depslist.ordered, provides, compss) according to modified global status.
- if ($urpm->{modified}) {
- #- special case if there is no more media registered.
- #- there is no need to recompute the hdlist and the files
- #- can be safely removed.
- if (@{$urpm->{media}} == 0) {
- unlink $urpm->{depslist};
- unlink $urpm->{provides};
- unlink $urpm->{compss};
-
- $urpm->{modified} = 0;
- }
-
- if ($urpm->{modified}) {
- #- cleaning.
- $urpm->{params}->clean();
+ #- build synthesis files once requires/files have been matched by rpmtools::read_hdlists.
+ if (@rebuild_synthesis_of_media) {
+ #- cleaning.
+ $urpm->{params}->clean();
- foreach my $medium (@{$urpm->{media} || []}) {
- $medium->{ignore} and next;
- if ($medium->{synthesis}) {
- $urpm->{log}(_("reading synthesis file [%s]", "$urpm->{statedir}/synthesis.$medium->{hdlist}"));
- $urpm->parse_synthesis("$urpm->{statedir}/synthesis.$medium->{hdlist}");
- } else {
- $urpm->{log}(_("reading hdlist file [%s]", "$urpm->{statedir}/$medium->{hdlist}"));
- $urpm->{params}->read_hdlists("$urpm->{statedir}/$medium->{hdlist}") or next;
- }
+ foreach my $medium (@{$urpm->{media} || []}) {
+ $medium->{ignore} and next;
+ if ($medium->{synthesis}) {
+ #- reading the synthesis allow to propagate requires to files, so that if an hdlist can have them...
+ $urpm->{log}(_("reading synthesis file [%s]", "$urpm->{statedir}/synthesis.$medium->{hdlist}"));
+ $urpm->parse_synthesis("$urpm->{statedir}/synthesis.$medium->{hdlist}");
+ } else {
+ $urpm->{log}(_("reading hdlist file [%s]", "$urpm->{statedir}/$medium->{hdlist}"));
+ $urpm->{params}->read_hdlists("$urpm->{statedir}/$medium->{hdlist}");
}
+ }
- $urpm->{log}(_("keeping only files referenced in provides"));
- $urpm->{params}->keep_only_cleaned_provides_files();
- foreach my $medium (@{$urpm->{media} || []}) {
- $medium->{ignore} and next;
- if ($medium->{synthesis}) {
- $urpm->{log}(_("reading synthesis file [%s]", "$urpm->{statedir}/synthesis.$medium->{hdlist}"));
- $urpm->parse_synthesis("$urpm->{statedir}/synthesis.$medium->{hdlist}");
- } else {
- $urpm->{log}(_("reading hdlist file [%s]", "$urpm->{statedir}/$medium->{hdlist}"));
- $urpm->{params}->read_hdlists("$urpm->{statedir}/$medium->{hdlist}") or next;
- }
+ $urpm->{log}(_("keeping only files referenced in provides"));
+ $urpm->{params}->keep_only_cleaned_provides_files();
+ foreach my $medium (@{$urpm->{media} || []}) {
+ $medium->{ignore} and next;
+ unless ($medium->{synthesis}) {
+ $urpm->{log}(_("reading hdlist file [%s]", "$urpm->{statedir}/$medium->{hdlist}"));
+ my @fullnames = $urpm->{params}->read_hdlists("$urpm->{statedir}/$medium->{hdlist}");
+ $urpm->{params}{info}{$_}{medium} = $medium foreach @fullnames;
}
- if ($options{depslist}) {
- $urpm->{log}(_("computing dependencies"));
- $urpm->{params}->compute_depslist;
- } else {
- #- this is necessary to give id at least.
- $urpm->{params}->compute_id;
+ }
+
+ #- restore provided file in each packages.
+ #- this is the only operation not done by reading hdlist.
+ foreach my $file (keys %{$urpm->{params}{provides}}) {
+ $file =~ /^\// or next;
+ foreach (keys %{$urpm->{params}{provides}{$file} || {}}) {
+ push @{$urpm->{params}{info}{$_}{provides}}, $file;
}
+ }
- #- once everything has been computed, write back the files to
- #- sync the urpmi database.
- $urpm->write_base_files();
- $urpm->{modified} = 0;
+ #- this is necessary to give id at least.
+ $urpm->{params}->compute_id;
+
+ #- rebuild all synthesis hdlist which need to be updated.
+ foreach (@rebuild_synthesis_of_media) {
+ $urpm->build_synthesis_hdlist($_);
}
#- clean headers cache directory to remove everything that is no more
@@ -844,112 +839,6 @@ sub try_umounting {
! -e $dir;
}
-#- read depslist file using rpmtools, this file is not managed directly by urpm.
-sub read_depslist {
- my ($urpm) = @_;
-
- local *F;
- open F, $urpm->{depslist} or $urpm->{error}(_("unable to read depslist file [%s]", $urpm->{depslist})), return;
- $urpm->{params}->read_depslist(\*F);
- close F;
- $urpm->{log}(_("read depslist file [%s]", $urpm->{depslist}));
- 1;
-}
-
-#- read providest file using rpmtools, this file is not managed directly by urpm.
-sub read_provides {
- my ($urpm) = @_;
-
- local *F;
- open F, $urpm->{provides} or $urpm->{error}(_("unable to read provides file [%s]", $urpm->{provides})), return;
- $urpm->{params}->read_provides(\*F);
- close F;
- $urpm->{log}(_("read provides file [%s]", $urpm->{provides}));
- 1;
-}
-
-#- read providest file using rpmtools, this file is not managed directly by urpm.
-sub read_compss {
- my ($urpm) = @_;
-
- local *F;
- open F, $urpm->{compss} or $urpm->{error}(_("unable to read compss file [%s]", $urpm->{compss})), return;
- $urpm->{params}->read_compss(\*F);
- close F;
- $urpm->{log}(_("read compss file [%s]", $urpm->{compss}));
- 1;
-}
-
-#- write base files using rpmtools, these files are not managed directly by urpm.
-sub write_base_files {
- my ($urpm) = @_;
- local *F;
-
- open F, ">$urpm->{depslist}" or $urpm->{fatal}(6, _("unable to write depslist file [%s]", $urpm->{depslist}));
- $urpm->{params}->write_depslist(\*F);
- close F;
- $urpm->{log}(_("write depslist file [%s]", $urpm->{depslist}));
-
- open F, ">$urpm->{provides}" or $urpm->{fatal}(6, _("unable to write provides file [%s]", $urpm->{provides}));
- $urpm->{params}->write_provides(\*F);
- close F;
- $urpm->{log}(_("write provides file [%s]", $urpm->{provides}));
-
- open F, ">$urpm->{compss}" or $urpm->{fatal}(6, _("unable to write compss file [%s]", $urpm->{compss}));
- $urpm->{params}->write_compss(\*F);
- close F;
- $urpm->{log}(_("write compss file [%s]", $urpm->{compss}));
-}
-
-#- try to determine which package are belonging to which medium.
-#- a flag active is used for that, transfered from medium to each
-#- package.
-#- relocation can use this flag after.
-sub filter_active_media {
- my ($urpm, %options) = @_;
- my (%fullname2id);
-
- #- build association hash to retrieve id and examine all list files.
- foreach (0 .. $#{$urpm->{params}{depslist}}) {
- my $p = $urpm->{params}{depslist}[$_];
- $fullname2id{"$p->{name}-$p->{version}-$p->{release}.$p->{arch}"} = $_;
- }
-
- #- examine each medium to search for packages.
- #- now get rpm file name in hdlist to match list file.
- require packdrake;
- foreach my $medium (@{$urpm->{media} || []}) {
- if (($medium->{active} || $options{use_update} && $medium->{update}) && !$medium->{ignore}) {
- if ($medium->{synthesis} && -r "$urpm->{statedir}/synthesis.$medium->{hdlist}") {
- local (*F, $_);
- open F, "gzip -dc '$urpm->{statedir}/synthesis.$medium->{hdlist}' |";
- while (<F>) {
- chomp;
- my ($name, $tag, @data) = split '@';
- $tag eq 'name' or next;
- my $id = delete $fullname2id{$data[0]};
- defined $id and $urpm->{params}{depslist}[$id]{active} = 1;
- }
- } elsif (-r "$urpm->{statedir}/$medium->{hdlist}") {
- my $packer = eval { new packdrake("$urpm->{statedir}/$medium->{hdlist}"); };
- $packer or $urpm->{error}(_("unable to parse correctly [%s]", "$urpm->{statedir}/$medium->{hdlist}")), next;
- foreach (@{$packer->{files}}) {
- $packer->{data}{$_}[0] eq 'f' or next;
- if (my ($fullname) = /^([^:\s]*-[^:\-\s]+-[^:\-\s]+\.[^:\.\-\s]*)(?::\S+)?/) {
- my $id = delete $fullname2id{$fullname};
- defined $id and $urpm->{params}{depslist}[$id]{active} = 1;
- } else {
- $urpm->{log}(_("unable to parse correctly [%s] on value \"%s\"",
- "$urpm->{statedir}/$medium->{hdlist}", $_));
- }
- }
- } else {
- $urpm->{error}(_("no hdlist file found for medium \"%s\"", $medium->{name}));
- }
- }
- }
-}
-
#- relocate depslist array id to use only the most recent packages,
#- reorder info hashes to give only access to best packages.
sub relocate_depslist_provides {
@@ -961,30 +850,26 @@ sub relocate_depslist_provides {
foreach (@{$urpm->{params}{depslist} || []}) {
my $fullname = "$_->{name}-$_->{version}-$_->{release}.$_->{arch}";
- if ($options{use_active} && !$_->{active}) {
- #- disable non active package if active flag should be checked.
- delete $urpm->{params}{info}{$fullname};
- } else {
- #- remove access to info if arch is incompatible and only
- #- take into account compatible arch to examine.
- #- set names hash by prefering first better version,
- #- then better release, then better arch.
- $relocated_entries ||= 0;
- if (rpmtools::compat_arch($_->{arch})) {
- my $p = $urpm->{params}{names}{$_->{name}};
- if ($p) {
- my $cmp_version = $_->{serial} == $p->{serial} && rpmtools::version_compare($_->{version}, $p->{version});
- my $cmp_release = $cmp_version == 0 && rpmtools::version_compare($_->{release}, $p->{release});
- if ($_->{serial} > $p->{serial} || $cmp_version > 0 || $cmp_release > 0 ||
- ($_->{serial} == $p->{serial} && $cmp_version == 0 && $cmp_release == 0 &&
- rpmtools::better_arch($_->{arch}, $p->{arch}))) {
- $urpm->{params}{names}{$_->{name}} = $_;
- ++$relocated_entries;
- }
- } else {
+
+ #- remove access to info if arch is incompatible and only
+ #- take into account compatible arch to examine.
+ #- set names hash by prefering first better version,
+ #- then better release, then better arch.
+ $relocated_entries ||= 0;
+ if (rpmtools::compat_arch($_->{arch})) {
+ my $p = $urpm->{params}{names}{$_->{name}};
+ if ($p) {
+ my $cmp_version = $_->{serial} == $p->{serial} && rpmtools::version_compare($_->{version}, $p->{version});
+ my $cmp_release = $cmp_version == 0 && rpmtools::version_compare($_->{release}, $p->{release});
+ if ($_->{serial} > $p->{serial} || $cmp_version > 0 || $cmp_release > 0 ||
+ ($_->{serial} == $p->{serial} && $cmp_version == 0 && $cmp_release == 0 &&
+ rpmtools::better_arch($_->{arch}, $p->{arch}))) {
$urpm->{params}{names}{$_->{name}} = $_;
++$relocated_entries;
}
+ } else {
+ $urpm->{params}{names}{$_->{name}} = $_;
+ ++$relocated_entries;
}
}
}
@@ -1020,7 +905,7 @@ sub relocate_depslist_provides {
#- register local packages for being installed, keep track of source.
sub register_local_packages {
- my ($urpm, $minimal, @files) = @_;
+ my ($urpm, @files) = @_;
my ($error, @names);
#- examine each rpm and build the depslist for them using current
@@ -1037,13 +922,8 @@ sub register_local_packages {
}
$error and $urpm->{fatal}(1, _("error registering local packages"));
- #- compute id or depslist associated.
- #- minimal mode says dependencies will be resolved in a cleaner way.
- if ($minimal) {
- $urpm->{params}->compute_id;
- } else {
- $urpm->{params}->compute_depslist;
- }
+ #- allocate id to each package read.
+ $urpm->{params}->compute_id;
#- return package names...
@names;
@@ -1165,7 +1045,7 @@ sub search_packages {
#- parse synthesis file to retrieve information stored inside.
sub parse_synthesis {
- my ($urpm, $synthesis) = @_;
+ my ($urpm, $medium) = @_;
local (*F, $_);
my ($error, $last_name, @founds, %info);
@@ -1194,28 +1074,29 @@ sub parse_synthesis {
push @{$urpm->{params}{depslist}}, $found;
$urpm->{params}{provides}{$found->{name}}{$fullname} = undef;
- #- get back epoch from provides list unless it is already known, if it is defined and create entry too.
- if (defined $serial) {
- $serial and $found->{serial} = $serial;
- } else {
- foreach (@{$info{provides} || []}) {
- /(\S*)\s*==\s*(\d+:)?[^-]*-[^-]*/ && $found->{name} eq $1 && $2 > 0 and $found->{serial} = $2;
- /(\S*)/ and $urpm->{params}{provides}{$1}{$fullname} = undef;
- }
+ foreach (@{$info{requires} || []}) {
+ /([^\s\[]*)/ and $urpm->{params}{provides}{$_} ||= undef; #- do not delete, but keep in mind.
+ }
+ foreach (@{$info{provides} || []}) {
+ /([^\s\[]*)(?:\s+|\[)?==\s*(\d+:)?[^\-]*-/ && $found->{name} eq $1 && $2 > 0 and $serial = $2;
+ /([^\s\[]*)/ and $urpm->{params}{provides}{$1}{$fullname} = undef;
}
}
}
if ($found) {
#- an already existing entries has been found, so
- #- add additional information (except name)
+ #- add additional information (except name or info).
foreach my $tag (keys %info) {
$tag ne 'name' && $tag ne 'info' and $found->{$tag} ||= $info{$tag};
}
- #- help remind rpm filename.
+ $serial and $found->{serial} = $serial;
$size and $found->{size} ||= $size;
$group and $found->{group} ||= $group;
$file and $found->{file} ||= $file;
+ #- keep track of medium used.
+ $found->{medium} ||= $medium;
+
#- keep track of package found.
push @founds, $found;
} else {
@@ -1225,7 +1106,7 @@ sub parse_synthesis {
$found;
};
- open F, "gzip -dc '$synthesis' |";
+ open F, "gzip -dc '" . "$urpm->{statedir}/synthesis.$medium->{hdlist}" . "' |";
while (<F>) {
chomp;
my ($name, $tag, @data) = split '@';
@@ -1237,8 +1118,8 @@ sub parse_synthesis {
$info{$tag} = \@data;
}
!%info || $update_info->() or $urpm->{log}(_("unable to analyse synthesis data of %s", $last_name));
- close F or $urpm->{error}(_("unable to parse correctly [%s]", $synthesis)), return;
- $urpm->{log}(_("read synthesis file [%s]", $synthesis));
+ close F or $urpm->{error}(_("unable to parse correctly [%s]", "$urpm->{statedir}/synthesis.$medium->{hdlist}")), return;
+ $urpm->{log}(_("read synthesis file [%s]", "$urpm->{statedir}/synthesis.$medium->{hdlist}"));
@founds;
}
@@ -1247,247 +1128,187 @@ sub parse_synthesis {
#- satisfied, remove upgrade for package already installed or with a better
#- version, try to upgrade to minimize upgrade errors.
#- all additional package selected have a true value.
-sub filter_minimal_packages_to_upgrade {
+sub filter_packages_to_upgrade {
my ($urpm, $packages, $select_choices, %options) = @_;
-
- #- make a subprocess here for reading filelist, this is important
- #- not to waste a lot of memory for the main program which will fork
- #- latter for each transaction.
- local (*INPUT, *OUTPUT_CHILD);
- local (*INPUT_CHILD, *OUTPUT);
- my $pid = 1;
-
- #- try to figure out if parsehdlist need to be called,
- #- or we have to use synthesis file.
- my @synthesis = map { "$urpm->{statedir}/synthesis.$_->{hdlist}" } grep { ! $_->{ignore} } @{$urpm->{media} || []};
- if (grep { ! -r $_ || ! -s $_ } @synthesis) {
- $urpm->{error}(_("unable to find all synthesis file, using parsehdlist server"));
- pipe INPUT, OUTPUT_CHILD;
- pipe INPUT_CHILD, OUTPUT;
- $pid = fork();
- } else {
- foreach (@synthesis) {
- $urpm->parse_synthesis($_);
- }
- }
-
- if ($pid) {
- close INPUT_CHILD;
- close OUTPUT_CHILD;
- select((select(OUTPUT), $| = 1)[0]);
-
- #- internal reading from interactive mode of parsehdlist.
- #- takes a code to call with the line read, this avoid allocating
- #- memory for that.
- my $ask_child = sub {
- my ($name, $tag, $code) = @_;
- $code or die "no callback code for parsehdlist output";
- if ($pid == 1) {
- my $p = $urpm->{params}{info}{$name} || $urpm->{params}{names}{$name};
- foreach (@{$p->{$tag} || []}) {
- $code->($_);
- }
- } else {
- print OUTPUT "$name:$tag\n";
-
- local $_;
- while (<INPUT>) {
- chomp;
- /^\s*$/ and last;
- $code->($_);
- }
- }
- };
-
- my ($db, @packages) = (rpmtools::db_open(''), keys %$packages);
- my ($id, %installed, %selected);
-
- #- at this level, compute global closure of what is requested, regardless of
- #- choices for which all package in the choices are taken and their dependencies.
- #- allow iteration over a modifying list.
- while (defined($id = shift @packages)) {
- $id =~ /\|/ and delete $packages->{$id}, $id = [ split '\|', $id ]; #- get back choices...
- if (ref $id) {
- my (@forced_selection, @selection);
-
- #- at this point we have almost only choices to resolves.
+ my ($db, @packages) = (rpmtools::db_open(''), keys %$packages);
+ my ($id, %installed, %selected);
+
+ #- at this level, compute global closure of what is requested, regardless of
+ #- choices for which all package in the choices are taken and their dependencies.
+ #- allow iteration over a modifying list.
+ while (defined($id = shift @packages)) {
+ $id =~ /\|/ and delete $packages->{$id}, $id = [ split '\|', $id ]; #- get back choices...
+ if (ref $id) {
+ my (@forced_selection, @selection);
+
+ #- at this point we have almost only choices to resolves.
#- but we have to check if one package here is already selected
#- previously, if this is the case, use it instead.
- #- if a choice is proposed with package already installed (this is the case for
- #- a provide with a lot of choices, we have to filter according to those who
+ #- if a choice is proposed with package already installed (this is the case for
+ #- a provide with a lot of choices, we have to filter according to those who
#- are installed).
- foreach (@$id) {
- if (exists $packages->{$_} ||
- rpmtools::db_traverse_tag($db, "name",
- [ $urpm->{params}{depslist}[$_]{name} ], [], undef) > 0) {
- push @forced_selection, $_;
- } else {
- push @selection, $_;
- }
+ foreach (@$id) {
+ if (exists $packages->{$_} ||
+ rpmtools::db_traverse_tag($db, "name",
+ [ $urpm->{params}{depslist}[$_]{name} ], [], undef) > 0) {
+ push @forced_selection, $_;
+ } else {
+ push @selection, $_;
}
+ }
- #- propose the choice to the user now, or select the best one (as it is supposed to be).
- @selection = @forced_selection ? @forced_selection :
- $select_choices && @selection > 1 ?
- ($select_choices->($urpm, undef, @selection)) : ($selection[0]);
- foreach (@selection) {
- unless (exists $packages->{$_}) {
- unshift @packages, $_;
- $packages->{$_} = 1;
- }
+ #- propose the choice to the user now, or select the best one (as it is supposed to be).
+ @selection = @forced_selection ? @forced_selection :
+ $select_choices && @selection > 1 ?
+ ($select_choices->($urpm, undef, @selection)) : ($selection[0]);
+ foreach (@selection) {
+ unless (exists $packages->{$_}) {
+ unshift @packages, $_;
+ $packages->{$_} = 1;
}
- next;
}
- my $pkg = $urpm->{params}{depslist}[$id];
- defined $pkg->{id} or next; #- id has been removed for package that only exists on some arch.
-
- #- search for package that will be upgraded, and check the difference
- #- of provides to see if something will be altered and need to be upgraded.
- #- this is bogus as it only take care of == operator if any.
- #- defining %provides here could slow the algorithm but it solves multi-pass
- #- where a provides is A and after A == version-release, when A is already
- #- installed.
- my (%diffprovides, %provides);
-
- rpmtools::db_traverse_tag($db,
- 'name', [ $pkg->{name} ],
- [ qw(name version release sense provides) ], sub {
- my ($p) = @_;
- foreach (@{$p->{provides}}) {
- s/\[\*\]//;
- s/\[([^\]]*)\]/ $1/;
- /^(\S*\s*\S*\s*)(\d+:)?([^\s-]*)(-?\S*)/;
- foreach ($_, "$1$3", "$1$2$3", "$1$3$4") {
- $diffprovides{$_} = "$p->{name}-$p->{version}-$p->{release}";
- }
+ next;
+ }
+ my $pkg = $urpm->{params}{depslist}[$id];
+ defined $pkg->{id} or next; #- id has been removed for package that only exists on some arch.
+
+ #- search for package that will be upgraded, and check the difference
+ #- of provides to see if something will be altered and need to be upgraded.
+ #- this is bogus as it only take care of == operator if any.
+ #- defining %provides here could slow the algorithm but it solves multi-pass
+ #- where a provides is A and after A == version-release, when A is already
+ #- installed.
+ my (%diffprovides, %provides);
+
+ rpmtools::db_traverse_tag($db,
+ 'name', [ $pkg->{name} ],
+ [ qw(name version release sense provides) ], sub {
+ my ($p) = @_;
+ foreach (@{$p->{provides}}) {
+ s/\[\*\]//;
+ s/\[([^\]]*)\]/ $1/;
+ /^(\S*\s*\S*\s*)(\d+:)?([^\s-]*)(-?\S*)/ or next;
+ foreach ($_, "$1$3", "$1$2$3", "$1$3$4") {
+ $diffprovides{$_} = "$p->{name}-$p->{version}-$p->{release}";
}
- });
- $ask_child->("$pkg->{name}-$pkg->{version}-$pkg->{release}.$pkg->{arch}", "provides", sub {
- $_[0] =~ /^(\S*\s*\S*\s*)(\d+:)?([^\s-]*)(-?\S*)/;
- foreach ($_[0], "$1$3", "$1$2$3", "$1$3$4") {
- delete $diffprovides{$_};
- }
- });
- foreach ($pkg->{name}, "$pkg->{name} == $pkg->{version}", "$pkg->{name} == $pkg->{version}-$pkg->{release}") {
+ }
+ });
+ foreach (@{$pkg->{provides} || []}) {
+ s/\[\*\]//;
+ s/\[([^\]]*)\]/ $1/;
+ /^(\S*\s*\S*\s*)(\d+:)?([^\s-]*)(-?\S*)/ or next;
+ foreach ($_, "$1$3", "$1$2$3", "$1$3$4") {
delete $diffprovides{$_};
}
- delete $diffprovides{""};
-
- foreach (keys %diffprovides) {
- #- check for exact match on it.
- if (/^(\S*)\s*(\S*)\s*(\d+:)?([^\s-]*)-?(\S*)/) {
- rpmtools::db_traverse_tag($db,
- 'whatrequires', [ $1 ],
- [ qw(name version release sense requires) ], sub{
- my ($p) = @_;
- foreach (@{$p->{requires}}) {
- s/\[\*\]//;
- s/\[([^\]]*)\]/ $1/;
- exists $diffprovides{$_} and $provides{$p->{name}} = undef;
- }
- });
- }
+ }
+ foreach ($pkg->{name}, "$pkg->{name} == $pkg->{version}", "$pkg->{name} == $pkg->{version}-$pkg->{release}") {
+ delete $diffprovides{$_};
+ }
+ delete $diffprovides{""};
+
+ foreach (keys %diffprovides) {
+ #- check for exact match on it.
+ if (/^(\S*)\s*(\S*)\s*(\d+:)?([^\s-]*)-?(\S*)/) {
+ rpmtools::db_traverse_tag($db,
+ 'whatrequires', [ $1 ],
+ [ qw(name version release sense requires) ], sub{
+ my ($p) = @_;
+ foreach (@{$p->{requires}}) {
+ s/\[\*\]//;
+ s/\[([^\]]*)\]/ $1/;
+ exists $diffprovides{$_} and $provides{$p->{name}} = undef;
+ }
+ });
}
+ }
- #- iterate over requires of the packages, register them.
- $provides{$pkg->{name}} = undef; #"$pkg->{name}-$pkg->{version}-$pkg->{release}";
- $ask_child->("$pkg->{name}-$pkg->{version}-$pkg->{release}.$pkg->{arch}", "requires", sub {
- if (my ($n, $o, $v, $r) = $_[0] =~ /^(\S*)\s*(\S*)\s*([^\s\-]*)-?(\S*)/) {
- exists $provides{$n} || exists $selected{$n} and return;
- #- if the provides is not found, it will be resolved at next step, else
- #- it will be resolved by searching the rpm database.
- $provides{$n} ||= undef;
- my $check_pkg = sub {
- $options{keep_alldeps} and return;
- $v and eval(rpmtools::version_compare($_[0]{version}, $v) . $o . 0) || return;
- $r and eval(rpmtools::version_compare($_[0]{release}, $r) . $o . 0) || return;
- $provides{$n} = "$_[0]{name}-$_[0]{version}-$_[0]{release}";
- };
- rpmtools::db_traverse_tag($db, $n =~ m|^/| ? 'path' : 'whatprovides', [ $n ],
- [ qw (name version release) ], $check_pkg);
- }
- });
+ #- iterate over requires of the packages, register them.
+ $provides{$pkg->{name}} = undef; #"$pkg->{name}-$pkg->{version}-$pkg->{release}";
+ foreach (@{$pkg->{requires} || []}) {
+ if (my ($n, $o, $v, $r) = /^([^\s\[]*)(?:\[\*\])?(?:\s+|\[)?([^\s\]]*)\s*([^\s\-\]]*)-?([^\s\]]*)/) {
+ exists $provides{$n} || exists $selected{$n} and next;
+ #- if the provides is not found, it will be resolved at next step, else
+ #- it will be resolved by searching the rpm database.
+ $provides{$n} ||= undef;
+ my $check_pkg = sub {
+ $options{keep_alldeps} and return;
+ $v and eval(rpmtools::version_compare($_[0]{version}, $v) . $o . 0) || return;
+ $r and eval(rpmtools::version_compare($_[0]{release}, $r) . $o . 0) || return;
+ $provides{$n} = "$_[0]{name}-$_[0]{version}-$_[0]{release}";
+ };
+ rpmtools::db_traverse_tag($db, $n =~ m|^/| ? 'path' : 'whatprovides', [ $n ],
+ [ qw (name version release) ], $check_pkg);
+ }
+ }
- #- at this point, all unresolved provides (requires) should be fixed by
- #- provides files, try to minimize choice at this level.
- foreach (keys %provides) {
- $provides{$_} || exists $selected{$_} and next;
- $selected{$_} = undef;
+ #- at this point, all unresolved provides (requires) should be fixed by
+ #- provides files, try to minimize choice at this level.
+ foreach (keys %provides) {
+ $provides{$_} || exists $selected{$_} and next;
+ $selected{$_} = undef;
- my (%pre_choices, @pre_choices, @choices, @upgradable_choices, %choices_id);
- foreach my $fullname (keys %{$urpm->{params}{provides}{$_} || {}}) {
- my $pkg = $urpm->{params}{info}{$fullname};
- push @{$pre_choices{$pkg->{name}}}, $pkg;
- }
- foreach (values %pre_choices) {
- #- there is at least one element in each list of values.
- if (@$_ == 1) {
- push @pre_choices, $_->[0];
- } else {
- #- take the best one, according to id used.
- my $chosen_pkg;
- foreach my $id (%$packages) {
- my $candidate_pkg = $urpm->{params}{depslist}[$id];
- $candidate_pkg->{name} eq $pkg->{name} or next;
- foreach my $pkg (@$_) {
- $pkg == $candidate_pkg and $chosen_pkg = $pkg, last;
- }
+ my (%pre_choices, @pre_choices, @choices, @upgradable_choices, %choices_id);
+ foreach my $fullname (keys %{$urpm->{params}{provides}{$_} || {}}) {
+ my $pkg = $urpm->{params}{info}{$fullname};
+ push @{$pre_choices{$pkg->{name}}}, $pkg;
+ }
+ foreach (values %pre_choices) {
+ #- there is at least one element in each list of values.
+ if (@$_ == 1) {
+ push @pre_choices, $_->[0];
+ } else {
+ #- take the best one, according to id used.
+ my $chosen_pkg;
+ foreach my $id (%$packages) {
+ my $candidate_pkg = $urpm->{params}{depslist}[$id];
+ $candidate_pkg->{name} eq $pkg->{name} or next;
+ foreach my $pkg (@$_) {
+ $pkg == $candidate_pkg and $chosen_pkg = $pkg, last;
}
- $chosen_pkg ||= $urpm->{params}{names}{$_->[0]{name}}; #- at least take the best normally used.
- push @pre_choices, $chosen_pkg;
}
+ $chosen_pkg ||= $urpm->{params}{names}{$_->[0]{name}}; #- at least take the best normally used.
+ push @pre_choices, $chosen_pkg;
}
- foreach my $pkg (@pre_choices) {
- push @choices, $pkg;
-
- unless ($options{keep_alldeps}) {
- rpmtools::db_traverse_tag($db,
- 'name', [ $pkg->{name} ],
- [ qw(name version release serial) ], sub {
- my ($p) = @_;
- my $cmp = rpmtools::version_compare($pkg->{version},
- $p->{version});
- $installed{$pkg->{id}} ||= !($pkg->{serial} > $p->{serial} || $pkg->{serial} == $p->{serial} && ($cmp > 0 || $cmp == 0 && rpmtools::version_compare($pkg->{release}, $p->{release}) > 0));
- });
- }
- $installed{$pkg->{id}} and delete $packages->{$pkg->{id}};
- if (exists $packages->{$pkg->{id}} || $installed{$pkg->{id}}) {
- #- the package is already selected, or installed with a better version and release.
- @choices = @upgradable_choices = ();
- last;
- }
- exists $installed{$pkg->{id}} and push @upgradable_choices, $pkg;
+ }
+ foreach my $pkg (@pre_choices) {
+ push @choices, $pkg;
+
+ unless ($options{keep_alldeps}) {
+ rpmtools::db_traverse_tag($db,
+ 'name', [ $pkg->{name} ],
+ [ qw(name version release serial) ], sub {
+ my ($p) = @_;
+ my $cmp = rpmtools::version_compare($pkg->{version}, $p->{version});
+ $installed{$pkg->{id}} ||= !($pkg->{serial} > $p->{serial} ||
+ $pkg->{serial} == $p->{serial} &&
+ ($cmp > 0 || $cmp == 0 &&
+ rpmtools::version_compare($pkg->{release},
+ $p->{release}) > 0));
+ });
}
- @upgradable_choices > 0 and @choices = @upgradable_choices;
- @choices_id{map { $_->{id} } @choices} = ();
- if (keys(%choices_id) > 0) {
- if (keys(%choices_id) == 1) {
- my ($id) = keys(%choices_id);
- exists $packages->{$id} or $packages->{$id} = 1;
- unshift @packages, $id;
- } else {
- push @packages, [ sort { $a <=> $b } keys %choices_id ];
- }
+ $installed{$pkg->{id}} and delete $packages->{$pkg->{id}};
+ if (exists $packages->{$pkg->{id}} || $installed{$pkg->{id}}) {
+ #- the package is already selected, or installed with a better version and release.
+ @choices = @upgradable_choices = ();
+ last;
+ }
+ exists $installed{$pkg->{id}} and push @upgradable_choices, $pkg;
+ }
+ @upgradable_choices > 0 and @choices = @upgradable_choices;
+ @choices_id{map { $_->{id} } @choices} = ();
+ if (keys(%choices_id) > 0) {
+ if (keys(%choices_id) == 1) {
+ my ($id) = keys(%choices_id);
+ exists $packages->{$id} or $packages->{$id} = 1;
+ unshift @packages, $id;
+ } else {
+ push @packages, [ sort { $a <=> $b } keys %choices_id ];
}
}
}
-
- rpmtools::db_close($db);
-
- #- no need to still use the child as this point, we can let him to terminate.
- if ($pid > 1) {
- close OUTPUT;
- close INPUT;
- waitpid $pid, 0;
- }
- } else {
- close INPUT;
- close OUTPUT;
- open STDIN, "<&INPUT_CHILD";
- open STDOUT, ">&OUTPUT_CHILD";
- exec "parsehdlist", "--interactive", map { "$urpm->{statedir}/$_->{hdlist}" } grep { ! $_->{ignore} } @{$urpm->{media} || []}
- or rpmtools::_exit(1);
}
+
+ rpmtools::db_close($db);
}
#- get out of package that should not be upgraded.
@@ -1534,7 +1355,7 @@ sub get_source_packages {
if (-r "$urpm->{statedir}/$medium->{list}" && !$medium->{ignore}) {
if ($medium->{synthesis} && -r "$urpm->{statedir}/synthesis.$medium->{hdlist}") {
#- rpm filename is stored in synthesis file now.
- my @list = $urpm->parse_synthesis("$urpm->{statedir}/synthesis.$medium->{hdlist}");
+ # TODO my @list = $urpm->parse_synthesis($medium);
@list > 0 or $urpm->{log}(_("unable to parse correctly [%s]", "$urpm->{statedir}/synthesis.$medium->{hdlist}"));
foreach (@list) {
my $fullname = "$_->{name}-$_->{version}-$_->{release}.$_->{arch}";
@@ -1800,9 +1621,10 @@ sub select_packages_to_upgrade {
select((select(OUTPUT), $| = 1)[0]);
#- for medium not having hdlist (because of only synthesis file used)
- #- let parse synthesis file.
- foreach (grep { -r $_ && -s $_ }
- map { "$urpm->{statedir}/synthesis.$_->{hdlist}" }
+ #- synthesis has already been parsed, any property in synthesis have already
+ #- been parsed too, only specific need like obsoletes or files may
+ #- need parsehdlist interactivity with hdlist.
+ foreach (grep { -r "$urpm->{statedir}/synthesis.$_->{hdlist}" && -s "$urpm->{statedir}/synthesis.$_->{hdlist}" }
grep { $_->{synthesis} && ! $_->{ignore} } @{$urpm->{media} || []}) {
$urpm->parse_synthesis($_);
}
class='ctx'> #, c-format
-msgid "Default user"
+msgid "Password (again)"
msgstr ""
-#: ../../standalone/draksplash:1
+#: any.pm:222
#, c-format
-msgid ""
-"the progress bar x coordinate\n"
-"of its upper left corner"
+msgid "Restrict command line options"
msgstr ""
-#: ../../standalone/drakgw:1
+#: any.pm:222
#, c-format
-msgid "Current interface configuration"
+msgid "restrict"
msgstr ""
-#: ../../printer/data.pm:1
+#: any.pm:224
#, c-format
-msgid "LPD - Line Printer Daemon"
+msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../network/isdn.pm:1
+#: any.pm:225
#, c-format
-msgid ""
-"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
-"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card.\n"
-""
+msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:227
#, c-format
-msgid "Do not print any test page"
+msgid "Enable multiple profiles"
msgstr ""
-#: ../../keyboard.pm:1
+#: any.pm:231
#, c-format
-msgid "Gurmukhi"
+msgid "Give the ram size in MB"
msgstr ""
-#: ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1
+#: any.pm:233
#, c-format
-msgid ""
-"%s already in use\n"
-""
+msgid "Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm:1
+#: any.pm:234 any.pm:524 install_steps_interactive.pm:1142
#, c-format
-msgid "Force No APIC"
+msgid "The passwords do not match"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: any.pm:234 any.pm:524 diskdrake/interactive.pm:1240 install_steps_interactive.pm:1142
#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
+msgid "Please try again"
msgstr ""
-#: ../../standalone.pm:1
+#: any.pm:243
#, c-format
-msgid "[keyboard]"
+msgid "Init Message"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: any.pm:245
#, c-format
-msgid "FTP proxy"
+msgid "Open Firmware Delay"
msgstr ""
-#: ../../standalone/drakfont:1
+#: any.pm:246
#, c-format
-msgid "Install List"
+msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:247
#, c-format
-msgid ""
-"Change\n"
-"Restore Path"
+msgid "Enable CD Boot?"
msgstr ""
-#: ../../standalone/logdrake:1
+#: any.pm:248
#, c-format
-msgid "Show only for the selected day"
+msgid "Enable OF Boot?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:249
#, c-format
-msgid ""
-"\tLimit disk usage to %s MB\n"
-""
+msgid "Default OS?"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: any.pm:289
#, c-format
-msgid "512 kB"
+msgid "Image"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: any.pm:290 any.pm:301
#, c-format
-msgid "(Note: Parallel ports cannot be auto-detected)"
+msgid "Root"
msgstr ""
-#: ../../standalone/logdrake:1
+#: any.pm:291 any.pm:319
#, c-format
-msgid "<control>N"
+msgid "Append"
msgstr ""
-#: ../../network/isdn.pm:1
+#: any.pm:295
#, c-format
-msgid "What kind of card do you have?"
+msgid "Initrd"
msgstr ""
-#: ../../standalone/logdrake:1
+#: any.pm:296
#, c-format
-msgid "<control>O"
+msgid "Read-write"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: any.pm:303
#, c-format
-msgid "Security"
+msgid "Table"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:304
#, c-format
-msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an icon on the desktop, labeled with \"STOP Printer!\", which stops all print jobs immediately when you click it. This is for example useful for paper jams.\n"
-""
+msgid "Unsafe"
msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/logdrake:1 ../../standalone/printerdrake:1
+#: any.pm:311 any.pm:316 any.pm:318
#, c-format
-msgid "<control>Q"
+msgid "Label"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:313 any.pm:323 harddrake/v4l.pm:236 standalone/drakfloppy:88 standalone/drakfloppy:94
#, c-format
-msgid ""
-"Unable to find backups to restore...\n"
-""
+msgid "Default"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: any.pm:320
#, c-format
-msgid "Unknown"
+msgid "Initrd-size"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:322
#, c-format
-msgid ""
-"This server is already in the list, it cannot be added again.\n"
-""
+msgid "NoVideo"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: any.pm:333
#, c-format
-msgid "Network Configuration"
+msgid "Empty label not allowed"
msgstr ""
-#: ../../standalone/logdrake:1
+#: any.pm:334
#, c-format
-msgid "<control>S"
+msgid "You must specify a kernel image"
msgstr ""
-#: ../../network/isdn.pm:1
+#: any.pm:334
#, c-format
-msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+msgid "You must specify a root partition"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: any.pm:335
#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \tdrakTermServ will configure this file to work in conjunction with the images created\n"
-" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up the boot image to \n"
-" \teach diskless client.\n"
-"\n"
-" \tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t}\n"
-" \t\t\n"
-" \tThe changes here from the default installation are changing the disable flag to\n"
-" \t'no' and changing the directory path to /var/lib/tftpboot, where mkinitrd-net\n"
-" \tputs its images."
+msgid "This label is already used"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:347
#, c-format
-msgid "Option %s must be a number!"
+msgid "Which type of entry do you want to add?"
msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/draksplash:1 ../../standalone/draksplash:1 ../../standalone/draksplash:1
+#: any.pm:348 standalone/drakbackup:1983
#, c-format
-msgid "Notice"
+msgid "Linux"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: any.pm:348
#, c-format
-msgid "You have not configured X. Are you sure you really want this?"
+msgid "Other OS (SunOS...)"
msgstr ""
-#: ../../standalone/drakups:1
+#: any.pm:349
#, c-format
-msgid "UPS devices"
+msgid "Other OS (MacOS...)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:349
#, c-format
-msgid "The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."
+msgid "Other OS (windows...)"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: any.pm:377
#, c-format
-msgid "If this is the case, you can make this be done automatically."
+msgid ""
+"Here are the entries on your boot menu so far.\n"
+"You can create additional entries or change the existing ones."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: any.pm:509
#, c-format
-msgid "What type of partitioning?"
+msgid "access to X programs"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:510
#, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
+msgid "access to rpm tools"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: any.pm:511
#, c-format
-msgid "Interface"
+msgid "allow \"su\""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:512
#, c-format
-msgid "Multisession CD"
+msgid "access to administrative files"
msgstr ""
-#: ../../modules/parameters.pm:1
+#: any.pm:513
#, c-format
-msgid "comma separated strings"
+msgid "access to network tools"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: any.pm:514
#, c-format
-msgid "These are the machines from which the scanners should be used:"
+msgid "access to compilation tools"
msgstr ""
-#: ../../standalone/logdrake:1
+#: any.pm:520
#, c-format
-msgid "Messages"
+msgid "(already added %s)"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: any.pm:525
#, c-format
-msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgid "This password is too simple"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: any.pm:526
#, c-format
-msgid "POP and IMAP Server"
+msgid "Please give a user name"
msgstr ""
-#: ../../lang.pm:1
+#: any.pm:527
#, c-format
-msgid "Mexico"
+msgid "The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: any.pm:528
#, c-format
-msgid "Model stepping"
+msgid "The user name is too long"
msgstr ""
-#: ../../lang.pm:1
+#: any.pm:529
#, c-format
-msgid "Rwanda"
+msgid "This user name has already been added"
msgstr ""
-#: ../../lang.pm:1
+#: any.pm:533
#, c-format
-msgid "Switzerland"
+msgid "Add user"
msgstr ""
-#: ../../lang.pm:1
+#: any.pm:534
#, c-format
-msgid "Brunei Darussalam"
+msgid ""
+"Enter a user\n"
+"%s"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: any.pm:537 diskdrake/dav.pm:68 diskdrake/hd_gtk.pm:158 diskdrake/removable.pm:27 diskdrake/smbnfs_gtk.pm:82 help.pm:534 interactive/http.pm:152 printer/printerdrake.pm:160 printer/printerdrake.pm:347 printer/printerdrake.pm:3753 standalone/drakbackup:3181 standalone/scannerdrake:623 standalone/scannerdrake:773
#, c-format
-msgid "Do you have any %s interfaces?"
+msgid "Done"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: any.pm:538 help.pm:51
#, c-format
-msgid ""
-"You must be root to read configuration file. \n"
-""
+msgid "Accept user"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:549
#, c-format
-msgid "Remote lpd Printer Options"
+msgid "Real name"
msgstr ""
-#: ../../help.pm:1
+#: any.pm:550 help.pm:51 printer/printerdrake.pm:1330 printer/printerdrake.pm:1444
#, c-format
-msgid ""
-"GNU/Linux is a multi-user system, meaning each user may have their own\n"
-"preferences, their own files and so on. You can read the ``Starter Guide''\n"
-"to learn more about multi-user systems. But unlike \"root\", who is the\n"
-"system administrator, the users you add at this point will not be\n"
-"authorized to change anything except their own files and their own\n"
-"configurations, protecting the system from unintentional or malicious\n"
-"changes that impact on the system as a whole. You will have to create at\n"
-"least one regular user for yourself -- this is the account which you should\n"
-"use for routine, day-to-day use. Although it is very easy to log in as\n"
-"\"root\" to do anything and everything, it may also be very dangerous! A\n"
-"very simple mistake could mean that your system will not work any more. If\n"
-"you make a serious mistake as a regular user, the worst that will happen is\n"
-"that you will lose some information, but not affect the entire system.\n"
-"\n"
-"The first field asks you for a real name. Of course, this is not mandatory\n"
-"-- you can actually enter whatever you like. DrakX will use the first word\n"
-"you typed in this field and copy it to the \"%s\" field, which is the name\n"
-"this user will enter to log onto the system. If you like, you may override\n"
-"the default and change the username. The next step is to enter a password.\n"
-"From a security point of view, a non-privileged (regular) user password is\n"
-"not as crucial as the \"root\" password, but that is no reason to neglect\n"
-"it by making it blank or too simple: after all, your files could be the\n"
-"ones at risk.\n"
-"\n"
-"Once you click on \"%s\", you can add other users. Add a user for each one\n"
-"of your friends: your father or your sister, for example. Click \"%s\" when\n"
-"you have finished adding users.\n"
-"\n"
-"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
-"that user (bash by default).\n"
-"\n"
-"When you have finished adding users, you will be asked to choose a user\n"
-"that can automatically log into the system when the computer boots up. If\n"
-"you are interested in that feature (and do not care much about local\n"
-"security), choose the desired user and window manager, then click \"%s\".\n"
-"If you are not interested in this feature, uncheck the \"%s\" box."
+msgid "User name"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:553
#, c-format
-msgid "Please choose the time interval between each backup"
+msgid "Shell"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
+#: any.pm:555
#, c-format
-msgid "Norway"
+msgid "Icon"
msgstr ""
-#: ../../keyboard.pm:1
+#: any.pm:596 security/l10n.pm:14
#, c-format
-msgid "Danish"
+msgid "Autologin"
msgstr ""
-#: ../../services.pm:1
+#: any.pm:597
#, c-format
-msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: any.pm:598 help.pm:51
#, c-format
-msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
+msgid "Do you want to use this feature?"
msgstr ""
-#: ../../help.pm:1
+#: any.pm:599
#, c-format
-msgid ""
-"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
-"knows if a selected package is located on another CD-ROM so it will eject\n"
-"the current CD and ask you to insert the correct CD as required."
+msgid "Choose the default user:"
msgstr ""
-#: ../../standalone/drakperm:1
+#: any.pm:600
#, c-format
-msgid "When checked, owner and group won't be changed"
+msgid "Choose the window manager to run:"
msgstr ""
-#: ../../lang.pm:1
+#: any.pm:612
#, c-format
-msgid "Bulgaria"
+msgid "Please choose a language to use."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:632
#, c-format
-msgid "Tuesday"
+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 ""
-#: ../../harddrake/data.pm:1
+#: any.pm:643 help.pm:634
#, c-format
-msgid "Processors"
+msgid "Use Unicode by default"
msgstr ""
-#: ../../lang.pm:1
+#: any.pm:644 help.pm:634
#, c-format
-msgid "Svalbard and Jan Mayen Islands"
+msgid "All languages"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: any.pm:680 help.pm:571 help.pm:951 install_steps_interactive.pm:903
#, c-format
-msgid "No NIC selected!"
+msgid "Country / Region"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: any.pm:681
#, c-format
-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."
+msgid "Please choose your country."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: any.pm:683
#, c-format
-msgid "partition %s is now known as %s"
+msgid "Here is the full list of available countries"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:684 diskdrake/interactive.pm:285 help.pm:534 help.pm:571 help.pm:609 help.pm:951 install_steps_interactive.pm:118
#, c-format
-msgid "Backup Other files..."
+msgid "More"
msgstr ""
-#: ../../lang.pm:1
+#: any.pm:815
#, c-format
-msgid "Congo (Kinshasa)"
+msgid "No sharing"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:815
#, c-format
-msgid "SMB server IP"
+msgid "Allow all users"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: any.pm:825 do_pkgs.pm:18
#, c-format
-msgid "Partition table of drive %s is going to be written to disk!"
+msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: any.pm:827
#, c-format
-msgid "Installing HPOJ package..."
+msgid "You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm:1
+#: any.pm:835 do_pkgs.pm:23
#, c-format
-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 install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used with\n"
-"the Mandrake rescue image, making it much easier to recover from severe system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
+msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: any.pm:841
#, c-format
msgid ""
+"Would you like to allow users to share some of their directories?\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror and nautilus.\n"
"\n"
-" DrakBackup Daemon Report\n"
+"\"Custom\" permit a per-user granularity.\n"
""
msgstr ""
-#: ../../keyboard.pm:1
+#: any.pm:856
#, c-format
-msgid "Latvian"
-msgstr ""
-
-#: ../../standalone/scannerdrake:1
-#, c-format
-msgid "If you have already installed your scanner's firmware you can update the firmware here by supplying the new firmware file."
+msgid "Launch userdrake"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: any.pm:858
#, c-format
-msgid "monthly"
+msgid ""
+"The per-user sharing uses the group \"fileshare\". \n"
+"You can use userdrake to add a user to this group."
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: authentication.pm:12
#, c-format
-msgid "Retry"
+msgid "Local files"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: authentication.pm:12
#, c-format
-msgid "Module name"
+msgid "LDAP"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: authentication.pm:12
#, c-format
-msgid "Start at boot"
+msgid "NIS"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: authentication.pm:12 authentication.pm:45
#, c-format
-msgid "Use Incremental Backups"
+msgid "Windows Domain"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1
+#: authentication.pm:28
#, c-format
-msgid "First sector of drive (MBR)"
+msgid "Authentication LDAP"
msgstr ""
-#: ../../lang.pm:1
+#: authentication.pm:29
#, c-format
-msgid "El Salvador"
+msgid "LDAP Base dn"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: authentication.pm:30
#, c-format
-msgid "Joystick"
+msgid "LDAP Server"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: authentication.pm:35
#, c-format
-msgid "DVD"
+msgid "Authentication NIS"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: authentication.pm:36
#, c-format
-msgid "(detected on port %s)"
+msgid "NIS Domain"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
+#: authentication.pm:37
#, c-format
-msgid "Use Unicode by default"
+msgid "NIS Server"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: authentication.pm:42
#, c-format
-msgid "the module of the GNU/Linux kernel that handles the device"
+msgid ""
+"For this to work for a W2K PDC, you will probably need to have the admin run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are good."
msgstr ""
-#: ../../standalone/drakclock:1
+#: authentication.pm:44
#, c-format
-msgid "Is your hardware clock set to GMT?"
+msgid "Authentication Windows Domain"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: authentication.pm:46
#, c-format
-msgid "Trying to rescue partition table"
+msgid "Domain Admin User Name"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: authentication.pm:47
#, c-format
-msgid "Option %s must be an integer number!"
+msgid "Domain Admin Password"
msgstr ""
-#: ../../security/l10n.pm:1
+#: authentication.pm:81
#, c-format
-msgid "Use password to authenticate users"
+msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: bootloader.pm:536
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"Welcome to the operating system chooser!\n"
+"\n"
+"Choose an operating system from the list above or\n"
+"wait for default boot.\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: bootloader.pm:669
#, c-format
-msgid "For backups to other media, files are still created on the hard drive, then moved to the other media. Enabling this option will remove the hard drive tar files after the backup."
+msgid "SILO"
msgstr ""
-#: ../../standalone/livedrake:1
+#: bootloader.pm:671 help.pm:729
#, c-format
-msgid ""
-"Unable to start live upgrade !!!\n"
-""
+msgid "LILO with graphical menu"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: bootloader.pm:672 help.pm:729
#, c-format
-msgid "Name: "
+msgid "LILO with text menu"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: bootloader.pm:674
#, c-format
-msgid "up"
+msgid "Grub"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: bootloader.pm:676
#, c-format
-msgid "16 million colors (24 bits)"
+msgid "Yaboot"
msgstr ""
-#: ../../any.pm:1
+#: bootloader.pm:1143
#, c-format
-msgid "Allow all users"
+msgid "not enough room in /boot"
msgstr ""
-#: ../advertising/08-store.pl:1
+#: bootloader.pm:1171
#, c-format
-msgid "The official MandrakeSoft Store"
+msgid ""
+"You can't install the bootloader on a %s partition\n"
+""
msgstr ""
-#: ../../install_interactive.pm:1 ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: common.pm:125
#, c-format
-msgid "Resizing"
+msgid "KB"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: common.pm:125
#, c-format
-msgid ""
-"Enter the maximum size\n"
-" allowed for Drakbackup (MB)"
+msgid "MB"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: common.pm:125
#, c-format
-msgid "Cable connection"
+msgid "GB"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1 ../../standalone/logdrake:1
+#: common.pm:133
#, c-format
-msgid "User"
+msgid "TB"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: common.pm:141
#, c-format
-msgid "Do new backup before restore (only for incremental backups.)"
+msgid "%d minutes"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: common.pm:143
#, c-format
-msgid "Secondary"
+msgid "1 minute"
msgstr ""
-#: ../../raid.pm:1
+#: common.pm:145
#, c-format
-msgid "mkraid failed"
+msgid "%d seconds"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1
+#: common.pm:196
#, c-format
-msgid "Name"
+msgid "Can't make screenshots before partitioning"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: common.pm:203
#, c-format
-msgid "Button 3 Emulation"
+msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../security/l10n.pm:1
+#: common.pm:268
#, c-format
-msgid "Check additions/removals of sgid files"
+msgid "kdesu missing"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: common.pm:271
#, c-format
-msgid "Sending files..."
+msgid "consolehelper missing"
msgstr ""
-#: ../../keyboard.pm:1
+#: crypto.pm:14 crypto.pm:28 lang.pm:229 network/netconnect.pm:55 network/netconnect.pm:282
#, c-format
-msgid "Israeli (Phonetic)"
+msgid "France"
msgstr ""
-#: ../../any.pm:1
+#: crypto.pm:15 lang.pm:205
#, c-format
-msgid "access to rpm tools"
+msgid "Costa Rica"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: crypto.pm:16 crypto.pm:29 lang.pm:177 network/netconnect.pm:58 network/netconnect.pm:281
#, c-format
-msgid "You must choose/enter a printer/device!"
+msgid "Belgium"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: crypto.pm:17 crypto.pm:30 lang.pm:210
#, c-format
-msgid "Permission problem accessing CD."
+msgid "Czech Republic"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: crypto.pm:18 crypto.pm:31 lang.pm:211
#, c-format
-msgid "Phone number"
+msgid "Germany"
msgstr ""
-#: ../../standalone/drakups:1
+#: crypto.pm:19 crypto.pm:32 lang.pm:242
#, c-format
-msgid "Rules"
+msgid "Greece"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: crypto.pm:20 crypto.pm:33 lang.pm:315
#, c-format
-msgid "Error: The \"%s\" driver for your sound card is unlisted"
+msgid "Norway"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: crypto.pm:21 crypto.pm:34 lang.pm:344
#, c-format
-msgid "Printer name, description, location"
+msgid "Sweden"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: crypto.pm:22 crypto.pm:36 lang.pm:314 network/netconnect.pm:56 network/netconnect.pm:284
#, c-format
-msgid "USA (broadcast)"
+msgid "Netherlands"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: crypto.pm:23 crypto.pm:37 lang.pm:262 network/netconnect.pm:57 network/netconnect.pm:283 standalone/drakxtv:48
#, c-format
-msgid "Use Xinerama extension"
+msgid "Italy"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: crypto.pm:24 crypto.pm:38 lang.pm:170
#, c-format
-msgid "Loopback"
+msgid "Austria"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: crypto.pm:35 crypto.pm:61 lang.pm:378 network/netconnect.pm:59 network/netconnect.pm:286
#, c-format
-msgid "West Europe"
+msgid "United States"
msgstr ""
-#: ../../standalone.pm:1
+#: diskdrake/dav.pm:19
#, c-format
msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/dav.pm:27
#, c-format
-msgid "On CD-R"
+msgid "New"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: diskdrake/dav.pm:63 diskdrake/interactive.pm:410 diskdrake/smbnfs_gtk.pm:75
#, c-format
-msgid "Harddrake2 version %s"
+msgid "Unmount"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:407 diskdrake/smbnfs_gtk.pm:76
#, c-format
-msgid "Preferences"
+msgid "Mount"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/dav.pm:65 help.pm:137
#, c-format
-msgid "Swaziland"
+msgid "Server"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/dav.pm:66 diskdrake/interactive.pm:401 diskdrake/interactive.pm:609 diskdrake/interactive.pm:628 diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:79
#, c-format
-msgid "Dominican Republic"
+msgid "Mount point"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: diskdrake/dav.pm:85
#, c-format
-msgid ""
-"An unexpected error has happened:\n"
-"%s"
+msgid "Please enter the WebDAV server URL"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: diskdrake/dav.pm:89
#, c-format
-msgid "Copying %s"
+msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../standalone/draksplash:1
+#: diskdrake/dav.pm:111
#, c-format
-msgid "Choose color"
+msgid "Server: "
msgstr ""
-#: ../../keyboard.pm:1
+#: diskdrake/dav.pm:112 diskdrake/interactive.pm:462 diskdrake/interactive.pm:1135 diskdrake/interactive.pm:1210
#, c-format
-msgid "Syriac"
+msgid "Mount point: "
msgstr ""
-#: ../../standalone/drakperm:1
+#: diskdrake/dav.pm:113 diskdrake/interactive.pm:1218
#, c-format
-msgid "Set-UID"
+msgid "Options: %s"
msgstr ""
-#: ../../help.pm:1
+#: diskdrake/hd_gtk.pm:96 diskdrake/interactive.pm:987 diskdrake/interactive.pm:997 diskdrake/interactive.pm:1051
#, c-format
-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 this partition\n"
-"will be lost and will not be recoverable!"
+msgid "Read carefully!"
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:1
+#: diskdrake/hd_gtk.pm:96
#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgid "Please make a backup of your data first"
msgstr ""
-#: ../../scanner.pm:1
+#: diskdrake/hd_gtk.pm:99
#, c-format
-msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
+msgid ""
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is enough)\n"
+"at the beginning of the disk"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#: diskdrake/hd_gtk.pm:156 help.pm:534
#, c-format
-msgid "Generic 2 Button Mouse"
+msgid "Wizard"
msgstr ""
-#: ../../standalone/drakperm:1
+#: diskdrake/hd_gtk.pm:189
#, c-format
-msgid "Enable \"%s\" to execute the file"
+msgid "Choose action"
msgstr ""
-#: ../../lvm.pm:1
+#: diskdrake/hd_gtk.pm:193
#, c-format
msgid ""
-"Remove the logical volumes first\n"
-""
+"You have one big Microsoft Windows partition.\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
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:1
+#: diskdrake/hd_gtk.pm:195
#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+msgid "Please click on a partition"
msgstr ""
-#: ../../standalone/drakboot:1
+#: diskdrake/hd_gtk.pm:209 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:488
#, c-format
-msgid ""
-"Can't write /etc/sysconfig/bootsplash\n"
-"File not found."
+msgid "Details"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: diskdrake/hd_gtk.pm:255
#, c-format
-msgid "Internet access"
+msgid "No hard drives found"
msgstr ""
-#: ../../standalone/draksplash:1
+#: diskdrake/hd_gtk.pm:326
#, c-format
-msgid ""
-"y coordinate of text box\n"
-"in number of characters"
+msgid "Ext2"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: diskdrake/hd_gtk.pm:326
#, c-format
-msgid "To get a list of the options available for the current printer click on the \"Print option list\" button."
+msgid "Journalised FS"
msgstr ""
-#: ../../standalone/service_harddrake:1
+#: diskdrake/hd_gtk.pm:326
#, c-format
-msgid ""
-"Some devices were added: %s\n"
-""
+msgid "Swap"
msgstr ""
-#: ../../standalone/drakgw:1
+#: diskdrake/hd_gtk.pm:326
#, c-format
-msgid "Enabling servers..."
+msgid "SunOS"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: diskdrake/hd_gtk.pm:326
#, c-format
-msgid "Printing test page(s)..."
+msgid "HFS"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/hd_gtk.pm:326
#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s@%s\n"
-"\n"
-"without being prompted for a password."
+msgid "Windows"
msgstr ""
-#: ../../fsedit.pm:1
+#: diskdrake/hd_gtk.pm:327 install_steps_gtk.pm:338 mouse.pm:158 services.pm:164 standalone/drakbackup:2028 standalone/drakperm:252
#, c-format
-msgid ""
-"There is already a partition with mount point %s\n"
-""
+msgid "Other"
msgstr ""
-#: ../../security/help.pm:1
+#: diskdrake/hd_gtk.pm:327 diskdrake/interactive.pm:1151
#, c-format
-msgid "Enable/Disable msec hourly security check."
+msgid "Empty"
msgstr ""
-#: ../../help.pm:1
+#: diskdrake/hd_gtk.pm:331
#, c-format
-msgid ""
-"At this point, you need to decide where you want to install the Mandrake\n"
-"Linux operating system on your hard drive. If your hard drive is empty or\n"
-"if an existing operating system is using all the available space you will\n"
-"have to partition the drive. Basically, partitioning a hard drive consists\n"
-"of logically dividing it to create the space needed to install your new\n"
-"Mandrake Linux system.\n"
-"\n"
-"Because the process of partitioning a hard drive is usually irreversible\n"
-"and can lead to lost data if there is an existing operating system already\n"
-"installed on the drive, partitioning can be intimidating and stressful if\n"
-"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
-"simplifies this process. Before continuing with this step, read through the\n"
-"rest of this section and above all, take your time.\n"
-"\n"
-"Depending on your hard drive configuration, several options are available:\n"
-"\n"
-" * \"%s\": this option will perform an automatic partitioning of your blank\n"
-"drive(s). If you use this option there will be no further prompts.\n"
-"\n"
-" * \"%s\": the wizard has detected one or more existing Linux partitions on\n"
-"your hard drive. If you want to use them, choose this option. You will then\n"
-"be asked to choose the mount points associated with each of the partitions.\n"
-"The legacy mount points are selected by default, and for the most part it's\n"
-"a good idea to keep them.\n"
-"\n"
-" * \"%s\": if Microsoft Windows is installed on your hard drive and takes\n"
-"all the space available on it, you will have to create free space for\n"
-"Linux. To do so, you can delete your Microsoft Windows partition and data\n"
-"(see ``Erase entire disk'' solution) or resize your Microsoft Windows FAT\n"
-"partition. Resizing can be performed without the loss of any data, provided\n"
-"you have previously defragmented the Windows partition and that it uses the\n"
-"FAT format. Backing up your data is strongly recommended.. Using this\n"
-"option is recommended if you want to use both Mandrake Linux and Microsoft\n"
-"Windows on the same computer.\n"
-"\n"
-" Before choosing this option, please understand that after this\n"
-"procedure, the size of your Microsoft Windows partition will be smaller\n"
-"then when you started. You will have less free space under Microsoft\n"
-"Windows to store your data or to install new software.\n"
-"\n"
-" * \"%s\": if you want to delete all data and all partitions present on\n"
-"your hard drive and replace them with your new Mandrake Linux system,\n"
-"choose this option. Be careful, because you will not be able to undo your\n"
-"choice after you confirm.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be deleted. !!\n"
-"\n"
-" * \"%s\": this will simply erase everything on the drive and begin fresh,\n"
-"partitioning everything from scratch. All data on your disk will be lost.\n"
-"\n"
-" !! If you choose this option, all data on your disk will be lost. !!\n"
-"\n"
-" * \"%s\": choose this option if you want to manually partition your hard\n"
-"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
-"easily lose all your data. That's why this option is really only\n"
-"recommended if you have done something like this before and have some\n"
-"experience. For more instructions on how to use the DiskDrake utility,\n"
-"refer to the ``Managing Your Partitions '' section in the ``Starter\n"
-"Guide''."
+msgid "Filesystem types:"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/hd_gtk.pm:348 diskdrake/hd_gtk.pm:350 diskdrake/hd_gtk.pm:353
#, c-format
-msgid "Ukraine"
+msgid "Use ``%s'' instead"
msgstr ""
-#: ../../standalone/drakbug:1
+#: diskdrake/hd_gtk.pm:348 diskdrake/hd_gtk.pm:353 diskdrake/interactive.pm:402 diskdrake/interactive.pm:562 diskdrake/removable.pm:26 diskdrake/removable.pm:49 standalone/harddrake2:67
#, c-format
-msgid "Application:"
+msgid "Type"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: diskdrake/hd_gtk.pm:348 diskdrake/interactive.pm:424
#, c-format
-msgid "External ISDN modem"
+msgid "Create"
msgstr ""
-#: ../../security/help.pm:1
+#: diskdrake/hd_gtk.pm:350 diskdrake/interactive.pm:411 standalone/drakperm:124 standalone/printerdrake:228
#, c-format
-msgid "if set to yes, report check result by mail."
+msgid "Delete"
msgstr ""
-#: ../../network/adsl.pm:1
+#: diskdrake/hd_gtk.pm:353
#, c-format
-msgid "ADSL connection type :"
+msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1
+#: diskdrake/interactive.pm:178
#, c-format
-msgid "Your choice? (default %s) "
+msgid "Choose another partition"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: diskdrake/interactive.pm:178
#, c-format
-msgid "Trouble shooting"
+msgid "Choose a partition"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:207
#, c-format
-msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-""
+msgid "Exit"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:240 help.pm:534
#, c-format
-msgid "daily"
+msgid "Undo"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:240
#, c-format
-msgid "and one unknown printer"
+msgid "Toggle to normal mode"
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: diskdrake/interactive.pm:240
#, c-format
-msgid "Ireland"
+msgid "Toggle to expert mode"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:259
#, c-format
-msgid " Restore Configuration "
+msgid "Continue anyway?"
msgstr ""
-#: ../../Xconfig/test.pm:1
+#: diskdrake/interactive.pm:264
#, c-format
-msgid "Is this the correct setting?"
+msgid "Quit without saving"
msgstr ""
-#: ../../help.pm:1
+#: diskdrake/interactive.pm:264
#, c-format
-msgid ""
-"You will now set up your Internet/network connection. If you wish to\n"
-"connect your computer to the Internet or to a local network, click \"%s\".\n"
-"Mandrake Linux will attempt to autodetect network devices and modems. If\n"
-"this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
-"configure the network, or to do it later, in which case clicking the \"%s\"\n"
-"button will take you to the next step.\n"
-"\n"
-"When configuring your network, the available connections options are:\n"
-"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
-"simple LAN connection (Ethernet).\n"
-"\n"
-"We will not detail each configuration option - just make sure that you have\n"
-"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
-"from your Internet Service Provider or system administrator.\n"
-"\n"
-"You can consult the ``Starter Guide'' chapter about Internet connections\n"
-"for details about the configuration, or simply wait until your system is\n"
-"installed and use the program described there to configure your connection."
+msgid "Quit without writing the partition table?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:269
#, c-format
-msgid "Wizard Configuration"
+msgid "Do you want to save /etc/fstab modifications"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: diskdrake/interactive.pm:283 help.pm:534
#, c-format
-msgid "Autoprobe"
+msgid "Clear all"
msgstr ""
-#: ../../security/help.pm:1
+#: diskdrake/interactive.pm:284 help.pm:534
#, c-format
-msgid ""
-"if set to yes, check for :\n"
-"\n"
-"- empty passwords,\n"
-"\n"
-"- no password in /etc/shadow\n"
-"\n"
-"- for users with the 0 id other than root."
+msgid "Auto allocate"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:290
#, c-format
-msgid "Backup system files..."
+msgid "Hard drive information"
msgstr ""
-#: ../../any.pm:1
+#: diskdrake/interactive.pm:322
#, c-format
-msgid "Can't use broadcast with no NIS domain"
+msgid "All primary partitions are used"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:323
#, c-format
-msgid "Removing printer \"%s\"..."
+msgid "I can't add any more partition"
msgstr ""
-#: ../../security/l10n.pm:1
+#: diskdrake/interactive.pm:324
#, c-format
-msgid "Shell history size"
+msgid "To have more partitions, please delete one to be able to create an extended partition"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: diskdrake/interactive.pm:335 help.pm:534
#, c-format
-msgid "drakfloppy"
+msgid "Save partition table"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: diskdrake/interactive.pm:336 help.pm:534
#, c-format
-msgid ""
-"Please indicate where the auto_install.cfg file is located.\n"
-"\n"
-"Leave it blank if you do not want to set up automatic installation mode.\n"
-"\n"
-""
+msgid "Restore partition table"
msgstr ""
-#: ../../printer/cups.pm:1 ../../standalone/printerdrake:1
+#: diskdrake/interactive.pm:337 help.pm:534
#, c-format
-msgid "Configured on other machines"
+msgid "Rescue partition table"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: diskdrake/interactive.pm:339 help.pm:534
#, c-format
-msgid "information level that can be obtained through the cpuid instruction"
+msgid "Reload partition table"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:341 help.pm:534
#, c-format
-msgid "Peru"
+msgid "Removable media automounting"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:350 diskdrake/interactive.pm:370
#, c-format
-msgid " on device: %s"
+msgid "Select file"
msgstr ""
-#: ../../install_interactive.pm:1
+#: diskdrake/interactive.pm:357
#, c-format
-msgid "Remove Windows(TM)"
+msgid ""
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
-#: ../../services.pm:1
+#: diskdrake/interactive.pm:371 harddrake/sound.pm:219 keyboard.pm:311 network/netconnect.pm:390 network/netconnect.pm:399 network/netconnect.pm:420 network/netconnect.pm:425 standalone/drakclock:196 standalone/drakconnect:676 standalone/drakfloppy:296 standalone/drakups:27
#, c-format
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgid "Warning"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: diskdrake/interactive.pm:372
#, c-format
msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
-#: ../../standalone/drakfont:1
+#: diskdrake/interactive.pm:383
#, c-format
-msgid "Select the font file or directory and click on 'Add'"
+msgid "Trying to rescue partition table"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:389
#, c-format
-msgid "Madagascar"
+msgid "Detailed information"
msgstr ""
-#: ../../standalone/drakbug:1
+#: diskdrake/interactive.pm:404 diskdrake/interactive.pm:699
#, c-format
-msgid "Urpmi"
+msgid "Resize"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1 ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:405 diskdrake/interactive.pm:766
#, c-format
-msgid "System"
+msgid "Move"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
+#: diskdrake/interactive.pm:406
#, c-format
-msgid "Do you want to use this feature?"
+msgid "Format"
msgstr ""
-#: ../../keyboard.pm:1
+#: diskdrake/interactive.pm:408
#, c-format
-msgid "Arabic"
+msgid "Add to RAID"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:409
#, c-format
-msgid ""
-"\n"
-"- Options:\n"
-""
+msgid "Add to LVM"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:412
#, c-format
-msgid "Password required"
+msgid "Remove from RAID"
msgstr ""
-#: ../../common.pm:1
+#: diskdrake/interactive.pm:413
#, c-format
-msgid "%d minutes"
+msgid "Remove from LVM"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: diskdrake/interactive.pm:414
#, c-format
-msgid "Graphics card: %s"
+msgid "Modify RAID"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:415
#, c-format
-msgid "WebDAV transfer failed!"
+msgid "Use for loopback"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: diskdrake/interactive.pm:455
#, c-format
-msgid "XFree configuration"
+msgid "Create a new partition"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: diskdrake/interactive.pm:458
#, c-format
-msgid "Choose action"
+msgid "Start sector: "
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:460 diskdrake/interactive.pm:868
#, c-format
-msgid "French Polynesia"
+msgid "Size in MB: "
msgstr ""
-#: ../../help.pm:1
+#: diskdrake/interactive.pm:461 diskdrake/interactive.pm:869
#, c-format
-msgid ""
-"Usually, DrakX has no problems detecting the number of buttons on your\n"
-"mouse. If it does, it assumes you have a two-button mouse and will\n"
-"configure it for third-button emulation. The third-button mouse button of a\n"
-"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
-"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
-"a PS/2, serial or USB interface.\n"
-"\n"
-"If for some reason you wish to specify a different type of mouse, select it\n"
-"from the list provided.\n"
-"\n"
-"If you choose a mouse other than the default, a test screen will be\n"
-"displayed. Use the buttons and wheel to verify that the settings are\n"
-"correct and that the mouse is working correctly. If the mouse is not\n"
-"working well, press the space bar or [Return] key to cancel the test and to\n"
-"go back to the list of choices.\n"
-"\n"
-"Wheel mice are occasionally not detected automatically, so you will need to\n"
-"select your mouse from a list. Be sure to select the one corresponding to\n"
-"the port that your mouse is attached to. After selecting a mouse and\n"
-"pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
-"the mouse wheel to ensure that it is activated correctly. Once you see the\n"
-"on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
-"buttons and check that the mouse pointer moves on-screen as you move your\n"
-"mouse."
+msgid "Filesystem type: "
msgstr ""
-#: ../../services.pm:1
+#: diskdrake/interactive.pm:466
#, c-format
-msgid "Support the OKI 4w and compatible winprinters."
+msgid "Preference: "
msgstr ""
-#: ../../services.pm:1
+#: diskdrake/interactive.pm:469
#, c-format
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgid "Logical volume name "
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:498
#, c-format
-msgid "Files or wildcards listed in a .backupignore file at the top of a directory tree will not be backed up."
+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 ""
-#: ../../standalone/net_monitor:1
+#: diskdrake/interactive.pm:528
#, c-format
-msgid ""
-"Sending\n"
-"speed:"
+msgid "Remove the loopback file?"
msgstr ""
-#. -PO: the first %s is the card type (scsi, network, sound,...)
-#. -PO: the second is the vendor+model name
-#: ../../modules/interactive.pm:1
+#: diskdrake/interactive.pm:547
#, c-format
-msgid "Installing driver for %s card %s"
+msgid "After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:558
#, c-format
-msgid "You have transferred your former default printer (\"%s\"), Should it be also the default printer under the new printing system %s?"
+msgid "Change partition type"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: diskdrake/interactive.pm:559 diskdrake/removable.pm:48
#, c-format
-msgid "Enable Server"
+msgid "Which filesystem do you want?"
msgstr ""
-#: ../../keyboard.pm:1
+#: diskdrake/interactive.pm:567
#, c-format
-msgid "Ukrainian"
+msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:596
#, c-format
-msgid "The network access was not running and could not be started. Please check your configuration and your hardware. Then try to configure your remote printer again."
+msgid "Where do you want to mount the loopback file %s?"
msgstr ""
-#: ../../standalone/drakperm:1
+#: diskdrake/interactive.pm:597
#, c-format
-msgid "Enable \"%s\" to write the file"
+msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: diskdrake/interactive.pm:602
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
+msgid ""
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:627
#, c-format
-msgid "Local network(s)"
+msgid "Where do you want to mount %s?"
msgstr ""
-#: ../../help.pm:1
+#: diskdrake/interactive.pm:651 diskdrake/interactive.pm:730 install_interactive.pm:156 install_interactive.pm:186
#, c-format
-msgid "Remove Windows"
+msgid "Resizing"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: diskdrake/interactive.pm:651
#, c-format
-msgid ""
-"Your %s has been configured.\n"
-"You may now scan documents using \"XSane\" from Multimedia/Graphics in the applications menu."
+msgid "Computing FAT filesystem bounds"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: diskdrake/interactive.pm:687
#, c-format
-msgid "Firewire controllers"
+msgid "This partition is not resizeable"
msgstr ""
-#: ../../help.pm:1
+#: diskdrake/interactive.pm:692
#, c-format
-msgid ""
-"After you have configured the general bootloader parameters, the list of\n"
-"boot options that will be available at boot time will be displayed.\n"
-"\n"
-"If there are other operating systems installed on your machine they will\n"
-"automatically be added to the boot menu. You can fine-tune the existing\n"
-"options by clicking \"%s\" to create a new entry; selecting an entry and\n"
-"clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
-"changes.\n"
-"\n"
-"You may also not want to give access to these other operating systems to\n"
-"anyone who goes to the console and reboots the machine. You can delete the\n"
-"corresponding entries for the operating systems to remove them from the\n"
-"bootloader menu, but you will need a boot disk in order to boot those other\n"
-"operating systems!"
+msgid "All data on this partition should be backed-up"
msgstr ""
-#: ../../standalone/drakboot:1
+#: diskdrake/interactive.pm:694
#, c-format
-msgid "System mode"
+msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:699
#, c-format
-msgid "To print on a NetWare printer, you need to provide the NetWare print server name (Note! it may be different from its TCP/IP hostname!) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+msgid "Choose the new size"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: diskdrake/interactive.pm:700
#, c-format
-msgid "Netmask:"
+msgid "New size in MB: "
msgstr ""
-#: ../../network/adsl.pm:1
+#: diskdrake/interactive.pm:743 install_interactive.pm:194
#, c-format
-msgid "Do it later"
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1
+#: diskdrake/interactive.pm:767
#, c-format
-msgid "Append"
+msgid "Which disk do you want to move it to?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:768
#, c-format
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgid "Sector"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:769
#, c-format
-msgid ""
-"When this option is turned on, on every startup of CUPS it is automatically made sure that\n"
-"\n"
-"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
-"\n"
-"- if /etc/cups/cupsd.conf is missing, it will be created\n"
-"\n"
-"- when printer information is broadcasted, it does not contain \"localhost\" as the server name.\n"
-"\n"
-"If some of these measures lead to problems for you, turn this option off, but then you have to take care of these points."
+msgid "Which sector do you want to move it to?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: diskdrake/interactive.pm:772
#, c-format
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-""
+msgid "Moving"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:772
#, c-format
-msgid "Network printer \"%s\", port %s"
+msgid "Moving partition..."
msgstr ""
-#: ../../standalone/drakgw:1
+#: diskdrake/interactive.pm:794
#, c-format
-msgid "Please choose what network adapter will be connected to your Local Area Network."
+msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:795 diskdrake/interactive.pm:812
#, c-format
-msgid "OK to restore the other files."
+msgid "new"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: diskdrake/interactive.pm:810
#, c-format
-msgid "Please choose your keyboard layout."
+msgid "Choose an existing LVM to add to"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:816
#, c-format
-msgid "Printer Device URI"
+msgid "LVM name?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:853
#, c-format
-msgid "Not erasable media!"
+msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: diskdrake/interactive.pm:866
#, c-format
-msgid "Terminal-based"
+msgid "Loopback"
msgstr ""
-#: ../../security/help.pm:1
+#: diskdrake/interactive.pm:867
#, c-format
-msgid "Enable/Disable IP spoofing protection."
+msgid "Loopback file name: "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:872
#, c-format
-msgid "Installing a printing system in the %s security level"
+msgid "Give a file name"
msgstr ""
-#: ../../any.pm:1
+#: diskdrake/interactive.pm:875
#, c-format
-msgid "The user name is too long"
+msgid "File is already used by another loopback, choose another one"
msgstr ""
-#: ../../any.pm:1
+#: diskdrake/interactive.pm:876
#, c-format
-msgid "Other OS (windows...)"
+msgid "File already exists. Use it?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:899
#, c-format
-msgid "WebDAV remote site already in sync!"
+msgid "Mount options"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:906
#, c-format
-msgid "Reading printer database..."
+msgid "Various"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: diskdrake/interactive.pm:970
#, c-format
-msgid "Generate auto install floppy"
+msgid "device"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:971
#, c-format
-msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
-""
+msgid "level"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:972
#, c-format
-msgid "Somalia"
+msgid "chunk size"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: diskdrake/interactive.pm:988
#, c-format
-msgid "No open source driver"
+msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: diskdrake/interactive.pm:1003
#, c-format
-msgid "Def."
+msgid "What type of partitioning?"
msgstr ""
-#: ../../security/level.pm:1
+#: diskdrake/interactive.pm:1019
#, c-format
-msgid "This is similar to the previous level, but the system is entirely closed and security features are at their maximum."
+msgid "The package %s is needed. Install it?"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: diskdrake/interactive.pm:1051
#, c-format
-msgid "Network ID"
+msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:1055
#, c-format
-msgid "Nicaragua"
+msgid "You'll need to reboot before the modification can take place"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:1066
#, c-format
-msgid "New Caledonia"
+msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../network/isdn.pm:1
+#: diskdrake/interactive.pm:1083
#, c-format
-msgid "European protocol (EDSS1)"
+msgid "Move files to the new partition"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: diskdrake/interactive.pm:1083
#, c-format
-msgid "/_Delete"
+msgid "Hide files"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1
+#: diskdrake/interactive.pm:1084
#, c-format
-msgid "Video mode"
+msgid ""
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:1095
#, c-format
-msgid "Oman"
+msgid "Moving files to the new partition"
msgstr ""
-#: ../../standalone/logdrake:1
+#: diskdrake/interactive.pm:1099
#, c-format
-msgid "Please enter your email address below "
+msgid "Copying %s"
msgstr ""
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
+#: diskdrake/interactive.pm:1103
#, c-format
-msgid "Network Monitoring"
+msgid "Removing %s"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: diskdrake/interactive.pm:1115
#, c-format
-msgid "SunOS"
+msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: diskdrake/interactive.pm:1136 diskdrake/interactive.pm:1195
#, c-format
-msgid "New size in MB: "
+msgid "Device: "
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: diskdrake/interactive.pm:1137
#, c-format
msgid ""
-"Partition table type: %s\n"
+"DOS drive letter: %s (just a guess)\n"
""
msgstr ""
-#: ../../any.pm:1
+#: diskdrake/interactive.pm:1141 diskdrake/interactive.pm:1149 diskdrake/interactive.pm:1214
#, c-format
-msgid "Authentication Windows Domain"
+msgid "Type: "
msgstr ""
-#: ../../standalone/drakups:1
+#: diskdrake/interactive.pm:1145 install_steps_gtk.pm:350
#, c-format
-msgid "Manufacturer / Model:"
+msgid "Name: "
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: diskdrake/interactive.pm:1153
#, c-format
-msgid "US keyboard"
+msgid ""
+"Start: sector %s\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: diskdrake/interactive.pm:1154
#, c-format
-msgid "Buttons emulation"
+msgid "Size: %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:1156
#, c-format
-msgid ", network printer \"%s\", port %s"
+msgid ", %s sectors"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:1158
#, c-format
msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
+"Cylinder %d to %d\n"
""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:1159
#, c-format
msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by FTP.\n"
+"Formatted\n"
""
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: diskdrake/interactive.pm:1160
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
-"\n"
-"\n"
-"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
-"\n"
-"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
-"currently uses\n"
-"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
-"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services're configured to be run on\n"
-"initlevel 3\n"
-"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
-"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"Not formatted\n"
""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: diskdrake/interactive.pm:1161
#, c-format
-msgid "Halt bug"
+msgid ""
+"Mounted\n"
+""
msgstr ""
-#: ../../standalone/logdrake:1
+#: diskdrake/interactive.pm:1162
#, c-format
-msgid "Mail alert configuration"
+msgid ""
+"RAID md%s\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:1164
#, c-format
-msgid "Tokelau"
+msgid ""
+"Loopback file(s):\n"
+" %s\n"
+""
msgstr ""
-#: ../../standalone/logdrake:1
+#: diskdrake/interactive.pm:1165
#, c-format
-msgid "Matching"
+msgid ""
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
+""
msgstr ""
-#: ../../keyboard.pm:1
+#: diskdrake/interactive.pm:1167
#, c-format
-msgid "Bosnian"
+msgid ""
+"Level %s\n"
+""
msgstr ""
-#: ../../standalone/drakbug:1 ../../standalone/drakbug:1
+#: diskdrake/interactive.pm:1168
#, c-format
-msgid "Release: "
+msgid ""
+"Chunk size %s\n"
+""
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: diskdrake/interactive.pm:1169
#, c-format
-msgid "Connection speed"
+msgid ""
+"RAID-disks %s\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:1171
#, c-format
-msgid "Namibia"
+msgid "Loopback file name: %s"
msgstr ""
-#: ../../services.pm:1
+#: diskdrake/interactive.pm:1174
#, c-format
-msgid "Database Server"
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
+""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: diskdrake/interactive.pm:1177
#, c-format
-msgid "special capacities of the driver (burning ability and or DVD support)"
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+""
msgstr ""
-#: ../../raid.pm:1
+#: diskdrake/interactive.pm:1196
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
+msgid "Read-only"
msgstr ""
-#: ../../standalone/drakclock:1
+#: diskdrake/interactive.pm:1197
#, c-format
-msgid "Network Time Protocol"
+msgid ""
+"Size: %s\n"
+""
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: diskdrake/interactive.pm:1198
#, c-format
msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
+"Geometry: %s cylinders, %s heads, %s sectors\n"
+""
msgstr ""
-#: ../../standalone/draksec:1
+#: diskdrake/interactive.pm:1199
#, c-format
-msgid "Please wait, setting security options..."
+msgid "Info: "
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: diskdrake/interactive.pm:1200
#, c-format
-msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgid ""
+"LVM-disks %s\n"
+""
msgstr ""
-#: ../../standalone/drakboot:1
+#: diskdrake/interactive.pm:1201
#, c-format
-msgid "Launch the graphical environment when your system starts"
+msgid ""
+"Partition table type: %s\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:1202
#, c-format
-msgid "hourly"
+msgid ""
+"on channel %d id %d\n"
+""
msgstr ""
-#: ../../keyboard.pm:1
+#: diskdrake/interactive.pm:1235
#, c-format
-msgid "Right Shift key"
+msgid "Filesystem encryption key"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/interactive.pm:1236
#, c-format
-msgid " Successfuly Restored on %s "
+msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/interactive.pm:1239
#, c-format
-msgid "Making printer port available for CUPS..."
+msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../lang.pm:1
+#: diskdrake/interactive.pm:1240
#, c-format
-msgid "Antigua and Barbuda"
+msgid "The encryption keys do not match"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: diskdrake/interactive.pm:1243 network/netconnect.pm:611 standalone/drakconnect:320
#, c-format
-msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
+msgid "Encryption key"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: diskdrake/interactive.pm:1244
#, c-format
-msgid "Spanish"
+msgid "Encryption key (again)"
msgstr ""
-#: ../../services.pm:1
+#: diskdrake/removable.pm:47
#, c-format
-msgid "Start"
+msgid "Change type"
msgstr ""
-#: ../../security/l10n.pm:1
+#: diskdrake/smbnfs_gtk.pm:162
#, c-format
-msgid "Direct root login"
+msgid "Can't login using username %s (bad password?)"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: diskdrake/smbnfs_gtk.pm:166 diskdrake/smbnfs_gtk.pm:175
#, c-format
-msgid "Configuring applications..."
+msgid "Domain Authentication Required"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: diskdrake/smbnfs_gtk.pm:167
#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer, connected directly to the network or to a remote Windows machine.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected. Also your network printer(s) and your Windows machines must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network and/or Windows-hosted printers when you don't need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
+msgid "Which username"
msgstr ""
-#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
-#: ../../network/netconnect.pm:1
+#: diskdrake/smbnfs_gtk.pm:167
#, c-format
-msgid "Normal modem connection"
+msgid "Another one"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: diskdrake/smbnfs_gtk.pm:176
#, c-format
-msgid "File Selection"
+msgid "Please enter your username, password and domain name to access this host."
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../printer/cups.pm:1 ../../printer/data.pm:1
+#: diskdrake/smbnfs_gtk.pm:178 standalone/drakbackup:3987
#, c-format
-msgid "CUPS"
+msgid "Username"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: diskdrake/smbnfs_gtk.pm:180
#, c-format
-msgid "Erase tape before backup"
+msgid "Domain"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: diskdrake/smbnfs_gtk.pm:204
#, c-format
-msgid "Run config tool"
+msgid "Search servers"
msgstr ""
-#: ../../any.pm:1
+#: diskdrake/smbnfs_gtk.pm:209
#, c-format
-msgid "Bootloader installation"
+msgid "Search new servers"
msgstr ""
-#: ../../install_interactive.pm:1
+#: do_pkgs.pm:133
#, c-format
-msgid "Root partition size in MB: "
+msgid "Installing packages..."
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: do_pkgs.pm:207
#, c-format
-msgid "This is a mandatory package, it can't be unselected"
+msgid "Removing packages..."
msgstr ""
-#: ../../services.pm:1
+#: fs.pm:397
#, c-format
-msgid "named (BIND) is a Domain Name Server (DNS) that is used to resolve host names to IP addresses."
+msgid ""
+"Do not update inode access times on this file system\n"
+"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: fs.pm:400
#, c-format
-msgid "Etherboot ISO image is %s"
+msgid ""
+"Can only be mounted explicitly (i.e.,\n"
+"the -a option will not cause the file system to be mounted)."
msgstr ""
-#: ../../lang.pm:1
+#: fs.pm:403
#, c-format
-msgid "Saint Lucia"
+msgid "Do not interpret character or block special devices on the file system."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: fs.pm:405
#, c-format
-msgid "November"
+msgid ""
+"Do not allow execution of any binaries on the mounted\n"
+"file system. This option might be useful for a server that has file systems\n"
+"containing binaries for architectures other than its own."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: fs.pm:409
#, c-format
-msgid "Disconnect..."
+msgid ""
+"Do not allow set-user-identifier or set-group-identifier\n"
+"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
+"have suidperl(1) installed.)"
msgstr ""
-#: ../../standalone/drakups:1
+#: fs.pm:413
#, c-format
-msgid "IP mask"
+msgid "Mount the file system read-only."
msgstr ""
-#: ../../standalone/drakbug:1
+#: fs.pm:415
#, c-format
-msgid "Report"
+msgid "All I/O to the file system should be done synchronously."
msgstr ""
-#: ../../lang.pm:1
+#: fs.pm:419
#, c-format
-msgid "Palau"
+msgid ""
+"Allow an ordinary user to mount the file system. The\n"
+"name of the mounting user is written to mtab so that he can unmount the file\n"
+"system again. This option implies the options noexec, nosuid, and nodev\n"
+"(unless overridden by subsequent options, as in the option line\n"
+"user,exec,dev,suid )."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: fs.pm:427
#, c-format
-msgid "level"
+msgid "Give write access to ordinary users"
msgstr ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
+#: fs.pm:563 fs.pm:573 fs.pm:577 fs.pm:581 fs.pm:585 fs.pm:589 swap.pm:12
#, c-format
-msgid "All incidents will be followed up by a single qualified MandrakeSoft technical expert."
+msgid "%s formatting of %s failed"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: fs.pm:626
#, c-format
-msgid "Package Group Selection"
+msgid "I don't know how to format %s in type %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: fs.pm:633 fs.pm:640
#, c-format
-msgid ""
-"Allow local hardware\n"
-"configuration."
+msgid "Formatting partition %s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: fs.pm:637
#, c-format
-msgid "Restore Via Network Protocol: %s"
+msgid "Creating and formatting file %s"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: fs.pm:703 fs.pm:756
#, c-format
-msgid "You can configure each parameter of the module here."
+msgid "Mounting partition %s"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: fs.pm:704 fs.pm:757
#, c-format
-msgid "Choose the resolution and the color depth"
+msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../standalone/mousedrake:1
+#: fs.pm:724 fs.pm:732
#, c-format
-msgid "Emulate third button?"
+msgid "Checking %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: fs.pm:773 partition_table.pm:628
#, c-format
-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."
+msgid "error unmounting %s: %s"
msgstr ""
-#: ../../steps.pm:1
+#: fs.pm:805
#, c-format
-msgid "Install updates"
+msgid "Enabling swap partition %s"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: fsedit.pm:21
#, c-format
-msgid "Mount"
+msgid "simple"
msgstr ""
-#: ../../standalone/drakautoinst:1 ../../standalone/drakautoinst:1
+#: fsedit.pm:25
#, c-format
-msgid "Creating auto install floppy"
+msgid "with /usr"
msgstr ""
-#: ../../standalone/draksplash:1
+#: fsedit.pm:30
#, c-format
-msgid "text box height"
+msgid "server"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: fsedit.pm:253
#, c-format
-msgid "State"
+msgid ""
+"I can't read the partition table of device %s, it's too corrupted for me :(\n"
+"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to not allow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to lose all the partitions?\n"
+""
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: fsedit.pm:513
#, c-format
-msgid "Be sure a media is present for the device %s"
+msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../any.pm:1
+#: fsedit.pm:514
#, c-format
-msgid "Enable multiple profiles"
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fs.pm:1
+#: fsedit.pm:533
#, c-format
-msgid "Do not interpret character or block special devices on the file system."
+msgid "Mount points must begin with a leading /"
+msgstr ""
+
+#: fsedit.pm:534
+#, c-format
+msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: fsedit.pm:535
#, c-format
msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
+"There is already a partition with mount point %s\n"
""
msgstr ""
-#: ../../printer/main.pm:1
+#: fsedit.pm:537
#, c-format
-msgid "Local printer"
+msgid ""
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: fsedit.pm:540
#, c-format
-msgid "Files Restored..."
+msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: fsedit.pm:542
#, c-format
-msgid "Package selection"
+msgid "You may not be able to install lilo (since lilo doesn't handle a LV on multiple PVs)"
msgstr ""
-#: ../../lang.pm:1
+#: fsedit.pm:545 fsedit.pm:547
#, c-format
-msgid "Mauritania"
+msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../standalone/drakgw:1
+#: fsedit.pm:549
#, c-format
msgid ""
-"I can keep your current configuration and assume you already set up a DHCP server; in that case please verify I correctly read the Network that you use for your local network; I will not reconfigure it and I will not touch your DHCP server configuration.\n"
-"\n"
-"The default DNS entry is the Caching Nameserver configured on the firewall. You can replace that with your ISP DNS IP, for example.\n"
-"\t\t \n"
-"Otherwise, I can reconfigure your interface and (re)configure a DHCP server for you.\n"
-"\n"
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n"
""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: fsedit.pm:551
#, c-format
-msgid "No local printer found! To manually install a printer enter a device name/file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: fsedit.pm:612
#, c-format
-msgid "All primary partitions are used"
+msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../printer/main.pm:1
+#: fsedit.pm:614
#, c-format
-msgid "LPD server \"%s\", printer \"%s\""
+msgid "Nothing to do"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: fsedit.pm:708
#, c-format
-msgid "After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."
+msgid "Error opening %s for writing: %s"
msgstr ""
-#: ../../services.pm:1
+#: harddrake/data.pm:45
#, c-format
-msgid "Automatic detection and configuration of hardware at boot."
+msgid "Floppy"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: harddrake/data.pm:46
#, c-format
-msgid "Installation Server Configuration"
+msgid "Zip"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: harddrake/data.pm:47
#, c-format
-msgid "Configuring IDE"
+msgid "Disk"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: harddrake/data.pm:48
#, c-format
-msgid "Network functionality not configured"
+msgid "CDROM"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: harddrake/data.pm:49
#, c-format
-msgid "Configure module"
+msgid "CD/DVD burners"
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/data.pm:50
#, c-format
-msgid "Cocos (Keeling) Islands"
+msgid "DVD-ROM"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/data.pm:51 standalone/drakbackup:2523
#, c-format
-msgid "You'll need to reboot before the modification can take place"
+msgid "Tape"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: harddrake/data.pm:52
#, c-format
-msgid "Provider phone number"
+msgid "Videocard"
msgstr ""
-#: ../../printer/main.pm:1
+#: harddrake/data.pm:53
#, c-format
-msgid "Host %s"
+msgid "Tvcard"
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/data.pm:54
#, c-format
-msgid "Fiji"
+msgid "Other MultiMedia devices"
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/data.pm:55
#, c-format
-msgid "Armenia"
+msgid "Soundcard"
msgstr ""
-#: ../../any.pm:1
+#: harddrake/data.pm:56
#, c-format
-msgid "Second floppy drive"
+msgid "Webcam"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: harddrake/data.pm:57
#, c-format
-msgid "About Harddrake"
+msgid "Processors"
msgstr ""
-#: ../../security/l10n.pm:1
+#: harddrake/data.pm:58
#, c-format
-msgid "Authorize TCP connections to X Window"
+msgid "Ethernetcard"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: harddrake/data.pm:66
#, c-format
-msgid "Drive capacity"
+msgid "Modem"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/data.pm:67
#, c-format
-msgid ""
-"Insert a floppy in drive\n"
-"All data on this floppy will be lost"
+msgid "ADSL adapters"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/data.pm:69
#, c-format
-msgid "Size: %s"
+msgid "ISDN adapters"
msgstr ""
-#: ../../keyboard.pm:1
+#: harddrake/data.pm:71
#, c-format
-msgid "Control and Shift keys simultaneously"
+msgid "Bridges and system controllers"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: harddrake/data.pm:72 standalone/harddrake2:306
#, c-format
-msgid "secondary"
+msgid "Unknown/Others"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: harddrake/data.pm:74 help.pm:198 help.pm:951 install_steps_interactive.pm:931 printer/printerdrake.pm:671 printer/printerdrake.pm:3852
#, c-format
-msgid "View Backup Configuration."
+msgid "Printer"
msgstr ""
-#: ../../security/help.pm:1
+#: harddrake/data.pm:76
#, c-format
-msgid "if set to yes, report check result to syslog."
+msgid "Scanner"
msgstr ""
-#. -PO: keep this short or else the buttons will not fit in the window
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: harddrake/data.pm:78 help.pm:951 install_steps_interactive.pm:924
#, c-format
-msgid "No password"
+msgid "Mouse"
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/data.pm:83
#, c-format
-msgid "Nigeria"
+msgid "Joystick"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: harddrake/data.pm:85
#, c-format
-msgid ""
-"%s: %s requires hostname...\n"
-""
+msgid "(E)IDE/ATA controllers"
msgstr ""
-#: ../../install_interactive.pm:1
+#: harddrake/data.pm:86
#, c-format
-msgid "There is no existing partition to use"
+msgid "Firewire controllers"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: harddrake/data.pm:87
#, c-format
-msgid ""
-"The following scanners\n"
-"\n"
-"%s\n"
-"are available on your system.\n"
-""
+msgid "SCSI controllers"
msgstr ""
-#: ../../printer/main.pm:1
+#: harddrake/data.pm:88
#, c-format
-msgid "Multi-function device on parallel port #%s"
+msgid "USB controllers"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: harddrake/data.pm:89
#, c-format
-msgid "To print to a TCP or socket printer, you need to provide the host name or IP of the printer and optionally the port number (default is 9100). On HP JetDirect servers the port number is usually 9100, on other servers it can vary. See the manual of your hardware."
+msgid "SMBus controllers"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/data.pm:97
#, c-format
-msgid "Hard drive information"
+msgid "cpu # "
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: harddrake/sound.pm:147 standalone/drakconnect:175
#, c-format
-msgid "Russian"
+msgid "Please Wait... Applying the configuration"
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/sound.pm:179
#, c-format
-msgid "Jordan"
+msgid "No alternative driver"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/sound.pm:180
#, c-format
-msgid "Hide files"
+msgid "There's no known OSS/ALSA alternative driver for your sound card (%s) which currently uses \"%s\""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: harddrake/sound.pm:186
#, c-format
-msgid "Auto-detect printers connected to this machine"
+msgid "Sound configuration"
msgstr ""
-#: ../../any.pm:1
+#: harddrake/sound.pm:188
#, c-format
-msgid "Sorry, no floppy drive available"
+msgid "Here you can select an alternative driver (either OSS or ALSA) for your sound card (%s)."
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/sound.pm:190
#, c-format
-msgid "Bolivia"
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is \"%s\")"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: harddrake/sound.pm:192
#, 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"
+"OSS (Open Sound System) was the first sound API. It's an OS independent sound API (it's available on most UNIX(tm) systems) but it's a very basic and limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using the ALSA library.\n"
""
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: harddrake/sound.pm:206 harddrake/sound.pm:286 standalone/drakups:134
#, c-format
-msgid "Bad package"
-msgstr ""
-
-#: ../advertising/07-server.pl:1
-#, c-format
-msgid "Transform your computer into a powerful Linux server: Web server, mail, firewall, router, file and print server (etc.) are just a few clicks away!"
+msgid "Driver:"
msgstr ""
-#: ../../security/level.pm:1
+#: harddrake/sound.pm:211
#, c-format
-msgid "DrakSec Basic Options"
+msgid "Trouble shooting"
msgstr ""
-#: ../../standalone/draksound:1
+#: harddrake/sound.pm:219
#, c-format
msgid ""
+"The old \"%s\" driver is blacklisted.\n"
"\n"
+"It has been reported to oops the kernel on unloading.\n"
"\n"
-"\n"
-"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig program. Just type \"sndconfig\" in a console."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Romania"
-msgstr ""
-
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1
-#, c-format
-msgid "Group"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/sound.pm:227
#, c-format
-msgid "Canada"
+msgid "No open source driver"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: harddrake/sound.pm:228
#, c-format
-msgid "choose device"
+msgid "There's no free driver for your sound card (%s), but there's a proprietary driver at \"%s\"."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/sound.pm:231
#, c-format
-msgid "Remove from LVM"
+msgid "No known driver"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: harddrake/sound.pm:232
#, c-format
-msgid "Timezone"
+msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: harddrake/sound.pm:236
#, c-format
-msgid "German"
+msgid "Unknown driver"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: harddrake/sound.pm:237
#, c-format
-msgid "Next ->"
+msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: harddrake/sound.pm:250
#, c-format
-msgid "Turning on this allows to print plain text files in japanese language. Only use this function if you really want to print text in japanese, if it is activated you cannot print accentuated characters in latin fonts any more and you will not be able to adjust the margins, the character size, etc. This setting only affects printers defined on this machine. If you want to print japanese text on a printer set up on a remote machine, you have to activate this function on that remote machine."
+msgid "Sound trouble shooting"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/sound.pm:251
#, c-format
msgid ""
+"The classic bug sound tester is to run the following commands:\n"
"\n"
-"Chances are, this partition is\n"
-"a Driver partition. You should\n"
-"probably leave it alone.\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
+"by default\n"
+"\n"
+"- \"grep sound-slot /etc/modules.conf\" will tell you what driver it\n"
+"currently uses\n"
+"\n"
+"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+"loaded or not\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
+"tell you if sound and alsa services're configured to be run on\n"
+"initlevel 3\n"
+"\n"
+"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
""
msgstr ""
-#: ../../lang.pm:1
-#, c-format
-msgid "Guinea-Bissau"
-msgstr ""
-
-#: ../../Xconfig/monitor.pm:1
+#: harddrake/sound.pm:277
#, c-format
-msgid "Horizontal refresh rate"
+msgid "Let me pick any driver"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/printerdrake:1
+#: harddrake/sound.pm:280
#, c-format
-msgid "Edit"
+msgid "Choosing an arbitrary driver"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/sound.pm:281
#, c-format
msgid ""
-"Can't unset mount point as this partition is used for loop back.\n"
-"Remove the loopback first"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The network configuration done during the installation cannot be started now. Please check whether the network is accessable after booting your system and correct the configuration using the Mandrake Control Center, section \"Network & Internet\"/\"Connection\", and afterwards set up the printer, also using the Mandrake Control Center, section \"Hardware\"/\"Printer\""
-msgstr ""
-
-#: ../../harddrake/data.pm:1
-#, c-format
-msgid "USB controllers"
+"If you really think that you know which driver is the right one for your card\n"
+"you can pick one in the above list.\n"
+"\n"
+"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: harddrake/v4l.pm:14 harddrake/v4l.pm:66
#, c-format
-msgid "What norm is your TV using?"
+msgid "Auto-detect"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: harddrake/v4l.pm:67 harddrake/v4l.pm:219
#, c-format
-msgid "Share name"
+msgid "Unknown|Generic"
msgstr ""
-#: ../../standalone/drakgw:1
+#: harddrake/v4l.pm:100
#, c-format
-msgid "enable"
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: harddrake/v4l.pm:101
#, c-format
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors..."
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: harddrake/v4l.pm:245
#, c-format
msgid ""
-"A problem occured while restarting the network: \n"
-"\n"
-"%s"
+"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 ""
-#: ../../diskdrake/interactive.pm:1
+#: harddrake/v4l.pm:248
#, c-format
-msgid "Remove the loopback file?"
+msgid "Card model:"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: harddrake/v4l.pm:249
#, c-format
-msgid "Selected size is larger than available space"
+msgid "Tuner type:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: harddrake/v4l.pm:250
#, c-format
-msgid "NCP server name missing!"
+msgid "Number of capture buffers:"
msgstr ""
-#: ../../any.pm:1
+#: harddrake/v4l.pm:250
#, c-format
-msgid "Please choose your country."
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: harddrake/v4l.pm:252
#, c-format
-msgid "Hard Disk Backup files..."
+msgid "PLL setting:"
msgstr ""
-#: ../../keyboard.pm:1
+#: harddrake/v4l.pm:253
#, c-format
-msgid "Laotian"
+msgid "Radio support:"
msgstr ""
-#: ../../lang.pm:1
+#: harddrake/v4l.pm:253
#, c-format
-msgid "Samoa"
+msgid "enable radio support"
msgstr ""
-#: ../../services.pm:1
+#: help.pm:11
#, c-format
msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
-msgstr ""
-
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
-#, c-format
-msgid "Re-generating list of configured scanners ..."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"terms in it, check the \"%s\" box. If not, simply turn off your computer."
msgstr ""
-#: ../../modules/interactive.pm:1
+#: help.pm:13 install_steps_gtk.pm:615 install_steps_interactive.pm:92 install_steps_interactive.pm:693 standalone/drakautoinst:199
#, c-format
-msgid "Module configuration"
+msgid "Accept"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: help.pm:16
#, c-format
-msgid "Scanner"
+msgid ""
+"GNU/Linux is a multi-user system, meaning each user may have their own\n"
+"preferences, their own files and so on. You can read the ``Starter Guide''\n"
+"to learn more about multi-user systems. But unlike \"root\", who is the\n"
+"system administrator, the users you add at this point will not be\n"
+"authorized to change anything except their own files and their own\n"
+"configurations, protecting the system from unintentional or malicious\n"
+"changes that impact on the system as a whole. You will have to create at\n"
+"least one regular user for yourself -- this is the account which you should\n"
+"use for routine, day-to-day use. Although it is very easy to log in as\n"
+"\"root\" to do anything and everything, it may also be very dangerous! A\n"
+"very simple mistake could mean that your system will not work any more. If\n"
+"you make a serious mistake as a regular user, the worst that will happen is\n"
+"that you will lose some information, but not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you typed in this field and copy it to the \"%s\" field, which is the name\n"
+"this user will enter to log onto the system. If you like, you may override\n"
+"the default and change the username. The next step is to enter a password.\n"
+"From a security point of view, a non-privileged (regular) user password is\n"
+"not as crucial as the \"root\" password, but that is no reason to neglect\n"
+"it by making it blank or too simple: after all, your files could be the\n"
+"ones at risk.\n"
+"\n"
+"Once you click on \"%s\", you can add other users. Add a user for each one\n"
+"of your friends: your father or your sister, for example. Click \"%s\" when\n"
+"you have finished adding users.\n"
+"\n"
+"Clicking the \"%s\" button allows you to change the default \"shell\" for\n"
+"that user (bash by default).\n"
+"\n"
+"When you have finished adding users, you will be asked to choose a user\n"
+"that can automatically log into the system when the computer boots up. If\n"
+"you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"%s\".\n"
+"If you are not interested in this feature, uncheck the \"%s\" box."
msgstr ""
-#: ../../Xconfig/test.pm:1
+#: help.pm:51 help.pm:51 help.pm:192 help.pm:440 help.pm:660 help.pm:965 help.pm:965 install_steps_gtk.pm:286 interactive.pm:406 interactive/newt.pm:300 printer/printerdrake.pm:2809 standalone/drakbackup:4587 standalone/drakbackup:4613 standalone/drakbackup:4643 standalone/drakbackup:4667 ugtk2.pm:493
#, c-format
-msgid "Warning: testing this graphic card may freeze your computer"
+msgid "Next ->"
msgstr ""
-#: ../../any.pm:1
+#: help.pm:51 help.pm:414 help.pm:440 help.pm:634 help.pm:702 help.pm:729 interactive.pm:374
#, c-format
-msgid "The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgid "Advanced"
msgstr ""
-#: ../../standalone/drakbug:1
+#: help.pm:54
#, c-format
-msgid "Menudrake"
+msgid ""
+"Listed here are the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
+"\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
+"\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
+"\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
+"\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
-#: ../../security/level.pm:1
+#: help.pm:85
#, c-format
-msgid "Welcome To Crackers"
+msgid ""
+"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM so it will eject\n"
+"the current CD and ask you to insert the correct CD as required."
msgstr ""
-#: ../../modules/interactive.pm:1
+#: help.pm:90
#, c-format
-msgid "Module options:"
+msgid ""
+"It is now time to specify which programs you wish to install on your\n"
+"system. There are thousands of packages available for Mandrake Linux, and\n"
+"to make it simpler to manage the packages have been placed into groups of\n"
+"similar applications.\n"
+"\n"
+"Packages are sorted into groups corresponding to a particular use of your\n"
+"machine. Mandrake Linux has four predefined installations available. You\n"
+"can think of these installation classes as containers for various packages.\n"
+"You can mix and match applications from the various groups, so a\n"
+"``Workstation'' installation can still have applications from the\n"
+"``Development'' group installed.\n"
+"\n"
+" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
+"more of the applications that are in the workstation group.\n"
+"\n"
+" * \"%s\": if plan on using your machine for programming, choose the\n"
+"appropriate packages from that group.\n"
+"\n"
+" * \"%s\": if your machine is intended to be a server, select which of the\n"
+"more common services you wish to install on your machine.\n"
+"\n"
+" * \"%s\": this is where you will choose your preferred graphical\n"
+"environment. At least one must be selected if you want to have a graphical\n"
+"interface available.\n"
+"\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
+"\n"
+" * \"%s\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
+"\n"
+" * \"%s\": installs the base system plus basic utilities and their\n"
+"documentation. This installation is suitable for setting up a server.\n"
+"\n"
+" * \"%s\": will install the absolute minimum number of packages necessary\n"
+"to get a working Linux system. With this installation you will only have a\n"
+"command line interface. The total size of this installation is about 65\n"
+"megabytes.\n"
+"\n"
+"You can check the \"%s\" box, which is useful if you are familiar with the\n"
+"packages being offered or if you want to have total control over what will\n"
+"be installed.\n"
+"\n"
+"If you started the installation in \"%s\" mode, you can unselect all groups\n"
+"to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
msgstr ""
-#: ../advertising/11-mnf.pl:1
+#: help.pm:137
#, c-format
-msgid "Secure your networks with the Multi Network Firewall"
+msgid "Workstation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: help.pm:137
#, c-format
-msgid "Go on without configuring the network"
+msgid "Development"
msgstr ""
-#: ../../network/isdn.pm:1
+#: help.pm:137
#, c-format
-msgid "Abort"
+msgid "Graphical Environment"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:137 install_steps_interactive.pm:555
#, c-format
-msgid "No password prompt on %s at port %s"
+msgid "With X"
msgstr ""
-#: ../../mouse.pm:1
+#: help.pm:137
#, c-format
-msgid "Kensington Thinking Mouse with Wheel emulation"
+msgid "With basic documentation"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: help.pm:137
#, c-format
-msgid "Usage of remote scanners"
+msgid "Truly minimal install"
msgstr ""
-#: ../../install_interactive.pm:1
+#: help.pm:137 install_steps_gtk.pm:281 install_steps_interactive.pm:601
#, c-format
-msgid "Your Windows partition is too fragmented. Please reboot your computer under Windows, run the ``defrag'' utility, then restart the Mandrake Linux installation."
+msgid "Individual package selection"
msgstr ""
-#: ../../keyboard.pm:1
+#: help.pm:137 help.pm:592
#, c-format
-msgid "Dvorak (Norwegian)"
+msgid "Upgrade"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:140
#, c-format
-msgid "Hard Disk Backup Progress..."
+msgid ""
+"If you told the installer that you wanted to individually select packages,\n"
+"it will present a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
+"\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right to let you know the purpose of the package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you will be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandrake Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that that\n"
+"security holes were discovered after this version of Mandrake Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do\n"
+"or why it is being installed, then click \"%s\". Clicking \"%s\" will\n"
+"install the listed services and they will be started automatically by\n"
+"default during boot. !!\n"
+"\n"
+"The \"%s\" option is used to disable the warning dialog which appears\n"
+"whenever the installer automatically selects a package to resolve a\n"
+"dependency issue. Some packages have relationships between each other such\n"
+"that installation of a package requires that some other program is also\n"
+"rerquired to be installed. The installer can determine which packages are\n"
+"required to satisfy a dependency to successfully complete the installation.\n"
+"\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert a floppy disk previously created at the\n"
+"end of another installation. See the second tip of last step on how to\n"
+"create such a floppy."
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: help.pm:172 help.pm:294 help.pm:322 help.pm:453 install_any.pm:416 interactive.pm:152 modules/interactive.pm:69 network/netconnect.pm:88 standalone/harddrake2:217 ugtk2.pm:1043
#, c-format
-msgid "Unable to fork: %s"
+msgid "No"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: help.pm:172 help.pm:294 help.pm:453 help.pm:453 install_any.pm:416 interactive.pm:152 modules/interactive.pm:69 network/netconnect.pm:88 standalone/drakgw:272 standalone/drakgw:273 standalone/drakgw:281 standalone/drakgw:291 standalone/harddrake2:216 ugtk2.pm:1043
#, c-format
-msgid "Type: "
+msgid "Yes"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: help.pm:172
#, c-format
-msgid "<-- Edit Client"
+msgid "Automatic dependencies"
msgstr ""
-#: ../../standalone/drakfont:1
+#: help.pm:175
#, c-format
-msgid "no fonts found"
+msgid ""
+"You will now set up your Internet/network connection. If you wish to\n"
+"connect your computer to the Internet or to a local network, click \"%s\".\n"
+"Mandrake Linux will attempt to autodetect network devices and modems. If\n"
+"this detection fails, uncheck the \"%s\" box. You may also choose not to\n"
+"configure the network, or to do it later, in which case clicking the \"%s\"\n"
+"button will take you to the next step.\n"
+"\n"
+"When configuring your network, the available connections options are:\n"
+"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
+"simple LAN connection (Ethernet).\n"
+"\n"
+"We will not detail each configuration option - just make sure that you have\n"
+"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
+"from your Internet Service Provider or system administrator.\n"
+"\n"
+"You can consult the ``Starter Guide'' chapter about Internet connections\n"
+"for details about the configuration, or simply wait until your system is\n"
+"installed and use the program described there to configure your connection."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#: help.pm:192 network/netconnect.pm:147
#, c-format
-msgid "Mouse"
+msgid "Use auto detection"
msgstr ""
-#: ../../bootloader.pm:1
+#: help.pm:195
#, c-format
-msgid "not enough room in /boot"
+msgid ""
+"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
+"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
+"information on how to setup a new printer. The interface presented there is\n"
+"similar to the one used during installation."
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: help.pm:198 help.pm:571 help.pm:951 help.pm:951 help.pm:951 help.pm:951 help.pm:951 help.pm:951 help.pm:951 install_steps_gtk.pm:665 standalone/drakbackup:2802 standalone/drakbackup:2812 standalone/drakbackup:2822 standalone/drakbackup:2832
#, c-format
-msgid "trying to promote %s"
+msgid "Configure"
msgstr ""
-#: ../../lang.pm:1
+#: help.pm:201
#, c-format
-msgid "Liechtenstein"
+msgid ""
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
+"\n"
+"DrakX will list all the services available on the current installation.\n"
+"Review each one carefully and uncheck those which are not needed at boot\n"
+"time.\n"
+"\n"
+"A short explanatory text will be displayed about a service when it is\n"
+"selected. However, if you are not sure whether a service is useful or not,\n"
+"it is safer to leave the default behavior.\n"
+"\n"
+"!! At this stage, be very careful if you intend to use your machine as a\n"
+"server: you will probably not want to start any services that you do not\n"
+"need. Please remember that several services can be dangerous if they are\n"
+"enabled on a server. In general, select only the services you really need.\n"
+"!!"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: help.pm:219
#, c-format
-msgid "Host name"
+msgid ""
+"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
+"local time according to the time zone you selected. If the clock on your\n"
+"motherboard is set to local time, you may deactivate this by unselecting\n"
+"\"%s\", which will let GNU/Linux know that the system clock and the\n"
+"hardware clock are in the same timezone. This is useful when the machine\n"
+"also hosts another operating system like Windows.\n"
+"\n"
+"The \"%s\" option will automatically regulate the clock by connecting to a\n"
+"remote time server on the Internet. For this feature to work, you must have\n"
+"a working Internet connection. It is best to choose a time server located\n"
+"near you. This option actually installs a time server that can used by\n"
+"other machines on your local network as well."
msgstr ""
-#: ../../standalone/draksplash:1
+#: help.pm:230 install_steps_interactive.pm:830
#, c-format
-msgid "the color of the progress bar"
+msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
+#: help.pm:230
#, c-format
-msgid "Suppress Fonts Files"
+msgid "Automatic time synchronization"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: help.pm:233
#, c-format
-msgid "Add to RAID"
+msgid ""
+"Graphic Card\n"
+"\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose from this list the card you actually have installed.\n"
+"\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs."
msgstr ""
-#: ../../help.pm:1
+#: help.pm:244
#, c-format
msgid ""
-"You can add additional entries in yaboot for other operating systems,\n"
-"alternate kernels, or for an emergency boot image.\n"
+"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
+"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
-"For other OSs, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
+"You will be presented with a list of different parameters to change to get\n"
+"an optimal graphical display: Graphic Card\n"
"\n"
-"For Linux, there are a few possible options:\n"
+" The installer will normally automatically detect and configure the\n"
+"graphic card installed on your machine. If it is not the case, you can\n"
+"choose from this list the card you actually have installed.\n"
"\n"
-" * Label: this is the name you will have to type at the yaboot prompt to\n"
-"select this boot option.\n"
+" In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs.\n"
"\n"
-" * Image: this is the name of the kernel to boot. Typically, vmlinux or a\n"
-"variation of vmlinux with an extension.\n"
"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
-" * Append: on Apple hardware, the kernel append option is often used to\n"
-"assist in initializing video hardware, or to enable keyboard mouse button\n"
-"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
-"The following are some examples:\n"
+"Monitor\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is incorrect, you can choose from\n"
+"this list the monitor you actually have connected to your computer.\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" * Initrd: this option can be used either to load initial modules before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation.\n"
"\n"
-" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
-"need to allocate a large ramdisk, this option can be used to specify a\n"
-"ramdisk larger than the default.\n"
+"Resolution\n"
"\n"
-" * Read-write: normally the \"root\" partition is initially mounted as\n"
-"read-only, to allow a file system check before the system becomes ``live''.\n"
-"You can override the default with this option.\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"hardware. Choose the one that best suits your needs (you will be able to\n"
+"change that after installation though). A sample of the chosen\n"
+"configuration is shown in the monitor.\n"
"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support.\n"
"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
-"highlighted with a ``*'' if you press [Tab] to see the boot selections."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
-
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid "No floppy drive available!"
+"\n"
+"Test\n"
+"\n"
+" the system will try to open a graphical screen at the desired\n"
+"resolution. If you can see the message during the test and answer \"%s\",\n"
+"then DrakX will proceed to the next step. If you cannot see the message, it\n"
+"means that some part of the autodetected configuration was incorrect and\n"
+"the test will automatically end after 12 seconds, bringing you back to the\n"
+"menu. Change settings until you get a correct graphical display.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" Here you can choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"%s\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: help.pm:297
#, c-format
msgid ""
-"To know about the options available for the current printer read either the list shown below or click on the \"Print option list\" button.%s%s%s\n"
+"Monitor\n"
"\n"
-""
+" The installer will normally automatically detect and configure the\n"
+"monitor connected to your machine. If it is incorrect, you can choose from\n"
+"this list the monitor you actually have connected to your computer."
msgstr ""
-#: ../../lang.pm:1
+#: help.pm:304
#, c-format
-msgid "Saudi Arabia"
+msgid ""
+"Resolution\n"
+"\n"
+" Here you can choose the resolutions and color depths available for your\n"
+"hardware. Choose the one that best suits your needs (you will be able to\n"
+"change that after installation though). A sample of the chosen\n"
+"configuration is shown in the monitor."
msgstr ""
-#: ../../services.pm:1
+#: help.pm:312
#, c-format
-msgid "Internet"
+msgid ""
+"In the case that different servers are available for your card, with or\n"
+"without 3D acceleration, you are then asked to choose the server that best\n"
+"suits your needs."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: help.pm:317
#, c-format
-msgid "Continue anyway?"
+msgid ""
+"Options\n"
+"\n"
+" Here you can choose whether you want to have your machine automatically\n"
+"switch to a graphical interface at boot. Obviously, you want to check\n"
+"\"%s\" if your machine is to act as a server, or if you were not successful\n"
+"in getting the display configured."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: help.pm:325
#, c-format
-msgid "If your printer is not listed, choose a compatible (see printer manual) or a similar one."
+msgid ""
+"At this point, you need to decide where you want to install the Mandrake\n"
+"Linux operating system on your hard drive. If your hard drive is empty or\n"
+"if an existing operating system is using all the available space you will\n"
+"have to partition the drive. Basically, partitioning a hard drive consists\n"
+"of logically dividing it to create the space needed to install your new\n"
+"Mandrake Linux system.\n"
+"\n"
+"Because the process of partitioning a hard drive is usually irreversible\n"
+"and can lead to lost data if there is an existing operating system already\n"
+"installed on the drive, partitioning can be intimidating and stressful if\n"
+"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
+"simplifies this process. Before continuing with this step, read through the\n"
+"rest of this section and above all, take your time.\n"
+"\n"
+"Depending on your hard drive configuration, several options are available:\n"
+"\n"
+" * \"%s\": this option will perform an automatic partitioning of your blank\n"
+"drive(s). If you use this option there will be no further prompts.\n"
+"\n"
+" * \"%s\": the wizard has detected one or more existing Linux partitions on\n"
+"your hard drive. If you want to use them, choose this option. You will then\n"
+"be asked to choose the mount points associated with each of the partitions.\n"
+"The legacy mount points are selected by default, and for the most part it's\n"
+"a good idea to keep them.\n"
+"\n"
+" * \"%s\": if Microsoft Windows is installed on your hard drive and takes\n"
+"all the space available on it, you will have to create free space for\n"
+"Linux. To do so, you can delete your Microsoft Windows partition and data\n"
+"(see ``Erase entire disk'' solution) or resize your Microsoft Windows FAT\n"
+"partition. Resizing can be performed without the loss of any data, provided\n"
+"you have previously defragmented the Windows partition and that it uses the\n"
+"FAT format. Backing up your data is strongly recommended.. Using this\n"
+"option is recommended if you want to use both Mandrake Linux and Microsoft\n"
+"Windows on the same computer.\n"
+"\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"then when you started. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software.\n"
+"\n"
+" * \"%s\": if you want to delete all data and all partitions present on\n"
+"your hard drive and replace them with your new Mandrake Linux system,\n"
+"choose this option. Be careful, because you will not be able to undo your\n"
+"choice after you confirm.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be deleted. !!\n"
+"\n"
+" * \"%s\": this will simply erase everything on the drive and begin fresh,\n"
+"partitioning everything from scratch. All data on your disk will be lost.\n"
+"\n"
+" !! If you choose this option, all data on your disk will be lost. !!\n"
+"\n"
+" * \"%s\": choose this option if you want to manually partition your hard\n"
+"drive. Be careful -- it is a powerful but dangerous choice and you can very\n"
+"easily lose all your data. That's why this option is really only\n"
+"recommended if you have done something like this before and have some\n"
+"experience. For more instructions on how to use the DiskDrake utility,\n"
+"refer to the ``Managing Your Partitions '' section in the ``Starter\n"
+"Guide''."
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: help.pm:383 install_interactive.pm:95
#, c-format
-msgid "Printer"
+msgid "Use free space"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: help.pm:383
#, c-format
-msgid ""
-"Geometry: %s cylinders, %s heads, %s sectors\n"
-""
+msgid "Use existing partition"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: help.pm:383 install_interactive.pm:137
#, c-format
-msgid "You find the file on the CD or floppy coming with the scanner, on the manufacturer's home page, or on your Windows partition."
+msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: help.pm:383 install_interactive.pm:211
#, c-format
-msgid "Printing on the printer \"%s\""
+msgid "Erase entire disk"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: help.pm:383
#, c-format
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgid "Remove Windows"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:383 install_interactive.pm:226
#, c-format
-msgid "Restore From Tape"
+msgid "Custom disk partitioning"
msgstr ""
-#: ../../standalone/drakbug:1
+#: help.pm:386
#, c-format
msgid ""
-"To submit a bug report, click the report button, which will open your default browser\n"
-"to Anthill where you will be able to upload the above information as a bug report."
+"There you are. Installation is now complete and your GNU/Linux system is\n"
+"ready to use. Just click \"%s\" to reboot the system. The first thing you\n"
+"should see after your computer has finished doing its hardware tests is the\n"
+"bootloader menu, giving you the choice of which operating system to start.\n"
+"\n"
+"The \"%s\" button shows two more buttons to:\n"
+"\n"
+" * \"%s\": to create an installation floppy disk that will automatically\n"
+"perform a whole installation without the help of an operator, similar to\n"
+"the installation you just configured.\n"
+"\n"
+" Note that two different options are available after clicking the button:\n"
+"\n"
+" * \"%s\". This is a partially automated installation. The partitioning\n"
+"step is the only interactive procedure.\n"
+"\n"
+" * \"%s\". Fully automated installation: the hard disk is completely\n"
+"rewritten, all data is lost.\n"
+"\n"
+" This feature is very handy when installing a number of similar machines.\n"
+"See the Auto install section on our web site for more information.\n"
+"\n"
+" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
+"To use this selection with another installation, insert the floppy and\n"
+"start the installation. At the prompt, press the [F1] key and type >>linux\n"
+"defcfg=\"floppy\" <<.\n"
+"\n"
+"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+"\"mformat a:\")"
msgstr ""
-#: ../../security/l10n.pm:1
+#: help.pm:414
#, c-format
-msgid "Password minimum length and number of digits and upcase letters"
+msgid "generate auto-install floppy"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:414 install_steps_interactive.pm:1301
#, c-format
-msgid "Backup Now from configuration file"
+msgid "Replay"
msgstr ""
-#: ../../fsedit.pm:1
+#: help.pm:414 install_steps_interactive.pm:1301
#, c-format
-msgid "Mount points should contain only alphanumerical characters"
+msgid "Automated"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: help.pm:414 install_steps_interactive.pm:1304
#, c-format
-msgid "Restarting printing system..."
+msgid "Save packages selection"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
+#: help.pm:417
#, c-format
-msgid "You can only run with no CDROM support"
+msgid ""
+"Any partitions that have been newly defined must be formatted for use\n"
+"(formatting means creating a file system).\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to\n"
+"erase any data they contain. If you wish to do that, please select those\n"
+"partitions as well.\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing\n"
+"partitions. You must reformat the partitions containing the operating\n"
+"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
+"reformat partitions containing data that you wish to keep (typically\n"
+"\"/home\").\n"
+"\n"
+"Please be careful when selecting partitions. After formatting, all data on\n"
+"the selected partitions will be deleted and you will not be able to recover\n"
+"it.\n"
+"\n"
+"Click on \"%s\" when you are ready to format partitions.\n"
+"\n"
+"Click on \"%s\" if you want to choose another partition for your new\n"
+"Mandrake Linux operating system installation.\n"
+"\n"
+"Click on \"%s\" if you wish to select partitions that will be checked for\n"
+"bad blocks on the disk."
msgstr ""
-#: ../../modules/interactive.pm:1
+#: help.pm:440 help.pm:965 install_steps_gtk.pm:444 interactive.pm:407 interactive/newt.pm:299 printer/printerdrake.pm:2807 standalone/drakbackup:4387 standalone/drakbackup:4415 standalone/drakbackup:4473 standalone/drakbackup:4499 standalone/drakbackup:4525 standalone/drakbackup:4583 standalone/drakbackup:4609 standalone/drakbackup:4639 standalone/drakbackup:4663 ugtk2.pm:491
#, c-format
-msgid "See hardware info"
+msgid "<- Previous"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:443
#, c-format
-msgid "Day"
+msgid ""
+"At the time you are installing Mandrake Linux, it is likely that some\n"
+"packages have been updated since the initial release. Bugs may have been\n"
+"fixed, security issues resolved. To allow you to benefit from these\n"
+"updates, you are now able to download them from the Internet. Check \"%s\"\n"
+"if you have a working Internet connection, or \"%s\" if you prefer to\n"
+"install updated packages later.\n"
+"\n"
+"Choosing \"%s\" will display a list of places from which updates can be\n"
+"retrieved. You should choose one nearer to you. A package-selection tree\n"
+"will appear: review the selection, and press \"%s\" to retrieve and install\n"
+"the selected package(s), or \"%s\" to abort."
msgstr ""
-#: ../../any.pm:1
+#: help.pm:453 help.pm:592 install_steps_gtk.pm:443 install_steps_interactive.pm:152 standalone/drakbackup:4733
#, c-format
-msgid "First sector of boot partition"
+msgid "Install"
msgstr ""
-#: ../../standalone.pm:1
+#: help.pm:456
#, c-format
msgid ""
-"[OPTIONS]...\n"
-"Mandrake Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, IP, nbi image name)"
+"At this point, DrakX will allow you to choose the security level desired\n"
+"for the machine. As a rule of thumb, the security level should be set\n"
+"higher if the machine will contain crucial data, or if it will be a machine\n"
+"directly exposed to the Internet. The trade-off of a higher security level\n"
+"is generally obtained at the expense of ease of use.\n"
+"\n"
+"If you do not know what to choose, stay with the default option."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: help.pm:465
#, c-format
-msgid "Printer manufacturer, model"
+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 by another\n"
+"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
+"partitions must be defined.\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select\n"
+"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
+"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * \"%s\": this option deletes all partitions on the selected hard drive\n"
+"\n"
+" * \"%s\": this option enables you to automatically create ext3 and swap\n"
+"partitions in the free space of your hard drive\n"
+"\n"
+"\"%s\": gives access to additional features:\n"
+"\n"
+" * \"%s\": saves the partition table to a floppy. Useful for later\n"
+"partition-table recovery if necessary. It is strongly recommended that you\n"
+"perform this step.\n"
+"\n"
+" * \"%s\": allows you to restore a previously saved partition table from a\n"
+"floppy disk.\n"
+"\n"
+" * \"%s\": if your partition table is damaged, you can try to recover it\n"
+"using this option. Please be careful and remember that it doesn't always\n"
+"work.\n"
+"\n"
+" * \"%s\": discards all changes and reloads the partition table that was\n"
+"originally on the hard drive.\n"
+"\n"
+" * \"%s\": unchecking this option will force users to manually mount and\n"
+"unmount removable media such as floppies and CD-ROMs.\n"
+"\n"
+" * \"%s\": use this option if you wish to use a wizard to partition your\n"
+"hard drive. This is recommended if you do not have a good understanding of\n"
+"partitioning.\n"
+"\n"
+" * \"%s\": use this option to cancel your changes.\n"
+"\n"
+" * \"%s\": allows additional actions on partitions (type, options, format)\n"
+"and gives more information about the hard drive.\n"
+"\n"
+" * \"%s\": when you are finished partitioning your hard drive, this will\n"
+"save your changes back to disk.\n"
+"\n"
+"When defining the size of a partition, you can finely set the partition\n"
+"size by using the Arrow keys of your keyboard.\n"
+"\n"
+"Note: you can reach any option using the keyboard. Navigate through the\n"
+"partitions using [Tab] and the [Up/Down] arrows.\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point\n"
+"\n"
+"To get information about the different file system types available, please\n"
+"read the ext2FS chapter from the ``Reference Manual''.\n"
+"\n"
+"If you are installing on a PPC machine, you will want to create a small HFS\n"
+"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
+"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
+"may find it a useful place to store a spare kernel and ramdisk images for\n"
+"emergency boot situations."
msgstr ""
-#: ../../printer/data.pm:1
+#: help.pm:534
#, c-format
-msgid "PDQ - Print, Don't Queue"
+msgid "Toggle between normal/expert mode"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: help.pm:537
#, c-format
-msgid "Subnet Mask:"
+msgid ""
+"More than one Microsoft partition has been detected on your hard drive.\n"
+"Please choose which 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 ""
-#: ../../security/l10n.pm:1
+#: help.pm:568
#, c-format
-msgid "Set password expiration and account inactivation delays"
+msgid ""
+"\"%s\": check the current country selection. If you are not in this\n"
+"country, click on the \"%s\" button and choose another one. If your country\n"
+"is not in the first list shown, click the \"%s\" button to get the complete\n"
+"country list."
msgstr ""
-#: ../../standalone/logdrake:1
+#: help.pm:574
#, c-format
msgid ""
-"_: load here is a noun, the load of the system\n"
-"Load"
+"This step is activated only if an old GNU/Linux partition has been found on\n"
+"your machine.\n"
+"\n"
+"DrakX now needs to know if you want to perform a new install or an upgrade\n"
+"of an existing Mandrake Linux system:\n"
+"\n"
+" * \"%s\": For the most part, this completely wipes out the old system. If\n"
+"you wish to change how your hard drives are partitioned, or change the file\n"
+"system, you should use this option. However, depending on your partitioning\n"
+"scheme, you can prevent some of your existing data from being over-written.\n"
+"\n"
+" * \"%s\": this installation class allows you to update the packages\n"
+"currently installed on your Mandrake Linux system. Your current\n"
+"partitioning scheme and user data is not altered. Most of other\n"
+"configuration steps remain available, similar to a standard installation.\n"
+"\n"
+"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
+"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
+"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: help.pm:595
#, c-format
msgid ""
-"The two critical parameters are the vertical refresh rate, which is the rate\n"
-"at which the whole screen is refreshed, and most importantly the horizontal\n"
-"sync rate, which is the rate at which scanlines are displayed.\n"
+"Depending on the default language you chose in Section , DrakX will\n"
+"automatically select a particular type of keyboard configuration. However,\n"
+"you may not have a keyboard that corresponds exactly to your language: for\n"
+"example, if you are an English speaking Swiss person, you may have a Swiss\n"
+"keyboard. Or if you speak English but are located in Quebec, you may find\n"
+"yourself in the same situation where your native language and keyboard do\n"
+"not match. In either case, this installation step will allow you to select\n"
+"an appropriate keyboard from a list.\n"
"\n"
-"It is VERY IMPORTANT that you do not specify a monitor type with a sync range\n"
-"that is beyond the capabilities of your monitor: you may damage your monitor.\n"
-" If in doubt, choose a conservative setting."
+"Click on the \"%s\" button to be presented with the complete list of\n"
+"supported keyboards.\n"
+"\n"
+"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
+"dialog will allow you to choose the key binding that will switch the\n"
+"keyboard between the Latin and non-Latin layouts."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: help.pm:612
#, c-format
msgid ""
-"This interface has not been configured yet.\n"
-"Run the \"Add an interface\" assistant from the Mandrake Control Center"
+"Your choice of preferred language will affect the language of the\n"
+"documentation, the installer and the system in general. Select first the\n"
+"region you are located in, and then the language you speak.\n"
+"\n"
+"Clicking on the \"%s\" button will allow you to select other languages to\n"
+"be installed on your workstation, thereby installing the language-specific\n"
+"files for system documentation and applications. For example, if you will\n"
+"host users from Spain on your machine, select English as the default\n"
+"language in the tree view and \"%s\" in the Advanced section.\n"
+"\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"%s\"\n"
+"box. Selecting support for a language means translations, fonts, spell\n"
+"checkers, etc. for that language will be installed. Additionally, the\n"
+"\"%s\" checkbox allows you to force the system to use unicode (UTF-8). Note\n"
+"however that this is an experimental feature. If you select different\n"
+"languages requiring different encoding the unicode support will be\n"
+"installed anyway.\n"
+"\n"
+"To switch between the various languages installed on the system, you can\n"
+"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+"language used by the entire system. Running the command as a regular user\n"
+"will only change the language settings for that particular user."
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: help.pm:634
#, c-format
-msgid "Modify"
+msgid "Espanol"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: help.pm:637
#, c-format
msgid ""
+"Usually, DrakX has no problems detecting the number of buttons on your\n"
+"mouse. If it does, it assumes you have a two-button mouse and will\n"
+"configure it for third-button emulation. The third-button mouse button of a\n"
+"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
+"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
+"a PS/2, serial or USB interface.\n"
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\".\n"
-""
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Need hostname, username and password!"
+"If for some reason you wish to specify a different type of mouse, select it\n"
+"from the list provided.\n"
+"\n"
+"If you choose a mouse other than the default, a test screen will be\n"
+"displayed. Use the buttons and wheel to verify that the settings are\n"
+"correct and that the mouse is working correctly. If the mouse is not\n"
+"working well, press the space bar or [Return] key to cancel the test and to\n"
+"go back to the list of choices.\n"
+"\n"
+"Wheel mice are occasionally not detected automatically, so you will need to\n"
+"select your mouse from a list. Be sure to select the one corresponding to\n"
+"the port that your mouse is attached to. After selecting a mouse and\n"
+"pressing the \"%s\" button, a mouse image is displayed on-screen. Scroll\n"
+"the mouse wheel to ensure that it is activated correctly. Once you see the\n"
+"on-screen scroll wheel moving as you scroll your mouse wheel, test the\n"
+"buttons and check that the mouse pointer moves on-screen as you move your\n"
+"mouse."
msgstr ""
-#: ../../network/tools.pm:1
+#: help.pm:663
#, c-format
-msgid "Insert floppy"
+msgid ""
+"Please select the correct port. For example, the \"COM1\" port under\n"
+"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: help.pm:667
#, c-format
msgid ""
-"WebDAV is a protocol that allows you to mount a web server's directory\n"
-"locally, and treat it like a local filesystem (provided the web server is\n"
-"configured as a WebDAV server). If you would like to add WebDAV mount\n"
-"points, select \"New\"."
+"This is the most crucial decision point for the security of your GNU/Linux\n"
+"system: you have to enter the \"root\" password. \"Root\" is the system\n"
+"administrator and is the only user authorized to make updates, add users,\n"
+"change the overall system configuration, and so on. In short, \"root\" can\n"
+"do everything! That is why you must choose a password that is difficult to\n"
+"guess - DrakX will tell you if the password that you chose too easy. As you\n"
+"can see, you are not forced to enter a password, but we strongly advise you\n"
+"against this. GNU/Linux is just as prone to operator error as any other\n"
+"operating system. Since \"root\" can overcome all limitations and\n"
+"unintentionally erase all data on partitions by carelessly accessing the\n"
+"partitions themselves, it is important that it be difficult to become\n"
+"\"root\".\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. Never write down the \"root\" password -- it makes it far\n"
+"too easy to compromise a system.\n"
+"\n"
+"One caveat -- do not make the password too long or complicated because you\n"
+"must be able to remember it!\n"
+"\n"
+"The password will not be displayed on screen as you type it in. To reduce\n"
+"the chance of a blind typing error you will need to enter the password\n"
+"twice. If you do happen to make the same typing error twice, this\n"
+"``incorrect'' password will be the one you will have use the first time you\n"
+"connect.\n"
+"\n"
+"If you wish access to this computer to be controlled by an authentication\n"
+"server, click the \"%s\" button.\n"
+"\n"
+"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
+"services, select the appropriate one for \"%s\". If you do not know which\n"
+"one to use, you should ask your network administrator.\n"
+"\n"
+"If you happen to have problems with remembering passwords, if your computer\n"
+"will never be connected to the internet or that you absolutely trust\n"
+"everybody who uses your computer, you can choose to have \"%s\"."
msgstr ""
-#: ../../standalone/drakbug:1
+#: help.pm:702
#, c-format
-msgid "HardDrake"
+msgid "authentication"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#. -PO: keep this short or else the buttons will not fit in the window
+#: help.pm:702 install_steps_interactive.pm:1138
#, c-format
-msgid "new"
+msgid "No password"
msgstr ""
-#: ../../security/help.pm:1
+#: help.pm:705
#, c-format
-msgid "Enable/Disable syslog reports to console 12"
+msgid ""
+"This dialog allows you to fine tune your bootloader:\n"
+"\n"
+" * \"%s\": there are three choices for your bootloader:\n"
+"\n"
+" * \"%s\": if you prefer grub (text menu).\n"
+"\n"
+" * \"%s\": if you prefer LILO with its text menu interface.\n"
+"\n"
+" * \"%s\": if you prefer LILO with its graphical interface.\n"
+"\n"
+" * \"%s\": in most cases, you will not change the default (\"%s\"), but if\n"
+"you prefer, the bootloader can be installed on the second hard drive\n"
+"(\"%s\"), or even on a floppy disk (\"%s\");\n"
+"\n"
+" * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
+"given to the user at the console to select a boot entry other than the\n"
+"default.\n"
+"\n"
+"!! Beware that if you choose not to install a bootloader (by selecting\n"
+"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
+"system! Be sure you know what you are doing before changing any of the\n"
+"options. !!\n"
+"\n"
+"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
+"are normally reserved for the expert user."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: help.pm:729
#, c-format
-msgid "Would you like to try again?"
+msgid "GRUB"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: help.pm:729
#, c-format
-msgid "Wizard"
+msgid "/dev/hda"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: help.pm:729
#, c-format
-msgid "Edit selected server"
+msgid "/dev/hdb"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:729
#, c-format
-msgid "Please choose where you want to backup"
+msgid "/dev/fd0"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: help.pm:729
#, c-format
-msgid "You need to reboot for the partition table modifications to take place"
+msgid "Delay before booting the default image"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:732
#, c-format
-msgid "Do not include the browser cache"
+msgid ""
+"After you have configured the general bootloader parameters, the list of\n"
+"boot options that will be available at boot time will be displayed.\n"
+"\n"
+"If there are other operating systems installed on your machine they will\n"
+"automatically be added to the boot menu. You can fine-tune the existing\n"
+"options by clicking \"%s\" to create a new entry; selecting an entry and\n"
+"clicking \"%s\" or \"%s\" to modify or remove it. \"%s\" validates your\n"
+"changes.\n"
+"\n"
+"You may also not want to give access to these other operating systems to\n"
+"anyone who goes to the console and reboots the machine. You can delete the\n"
+"corresponding entries for the operating systems to remove them from the\n"
+"bootloader menu, but you will need a boot disk in order to boot those other\n"
+"operating systems!"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: help.pm:745 interactive.pm:298 interactive/gtk.pm:471 standalone/drakbackup:1926 standalone/drakfont:709 standalone/drakfont:751 standalone/drakups:297 standalone/drakups:340 standalone/drakups:360
#, c-format
-msgid "Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)"
+msgid "Add"
msgstr ""
-#: ../../standalone/keyboarddrake:1
+#: help.pm:745 interactive.pm:298 interactive/gtk.pm:471
#, c-format
-msgid "Please, choose your keyboard layout."
+msgid "Modify"
msgstr ""
-#: ../../mouse.pm:1 ../../security/level.pm:1
+#: help.pm:745 interactive.pm:298 interactive/gtk.pm:471 standalone/drakups:299 standalone/drakups:342 standalone/drakups:362
#, c-format
-msgid "Standard"
+msgid "Remove"
msgstr ""
-#: ../../standalone/mousedrake:1
+#: help.pm:745 standalone/drakTermServ:225 standalone/drakTermServ:371 standalone/drakfont:504 standalone/drakfont:592 standalone/drakfont:677
#, c-format
-msgid "Please choose your mouse type."
+msgid "OK"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: help.pm:748
#, c-format
-msgid "Connect..."
+msgid ""
+"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+"automated. DrakX will analyze the disk boot sector and act according to\n"
+"what it finds there:\n"
+"\n"
+" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
+"boot sector. This way you will be able to load either GNU/Linux or another\n"
+"OS.\n"
+"\n"
+" * if a grub or LILO boot sector is found, it will replace it with a new\n"
+"one.\n"
+"\n"
+"If it cannot make a determination, DrakX will ask you where to place the\n"
+"bootloader."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: help.pm:763
#, c-format
-msgid "Failed to configure printer \"%s\"!"
+msgid ""
+"Now, it's time to select a printing system for your computer. Other OSs may\n"
+"offer you one, but Mandrake Linux offers two. Each of the printing system\n"
+"is best suited to particular types of configuration.\n"
+"\n"
+" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
+"if you have a direct connection to your printer, you want to be able to\n"
+"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
+"will handle only very simple network cases and is somewhat slow when used\n"
+"with networks.) It's recommended that you use \"pdq\" if this is your first\n"
+"experience with GNU/Linux.\n"
+"\n"
+" * \"%s\" - `` Common Unix Printing System'', is an excellent choice for\n"
+"printing to your local printer or to one halfway around the planet. It is\n"
+"simple to configure and can act as a server or a client for the ancient\n"
+"\"lpd \" printing system, so it compatible with older operating systems\n"
+"which may still need print services. While quite powerful, the basic setup\n"
+"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
+"sure you turn on the \"cups-lpd \" daemon. \"%s\" includes graphical\n"
+"front-ends for printing or choosing printer options and for managing the\n"
+"printer.\n"
+"\n"
+"If you make a choice now, and later find that you don't like your printing\n"
+"system you may change it by running PrinterDrake from the Mandrake Control\n"
+"Center and clicking the expert button."
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: help.pm:786 help.pm:786
#, c-format
-msgid "not configured"
+msgid "pdq"
msgstr ""
-#: ../../network/isdn.pm:1
+#: help.pm:786 help.pm:786 printer/cups.pm:99 printer/data.pm:76
#, c-format
-msgid "ISA / PCMCIA"
+msgid "CUPS"
msgstr ""
-#: ../../standalone/drakfont:1
+#: help.pm:789
#, c-format
-msgid "About"
+msgid ""
+"DrakX will first detect any IDE devices present in your computer. It will\n"
+"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
+"found, DrakX will automatically install the appropriate driver.\n"
+"\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, you'll have to specify your hardware by hand.\n"
+"\n"
+"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
+"want to configure options for it. You should allow DrakX to probe the\n"
+"hardware for the card-specific options which are needed to initialize the\n"
+"adapter. Most of the time, DrakX will get through this step without any\n"
+"issues.\n"
+"\n"
+"If DrakX is not able to probe for the options to automatically determine\n"
+"which parameters need to be passed to the hardware, you'll need to manually\n"
+"configure the driver."
msgstr ""
-#: ../../mouse.pm:1
+#: help.pm:807
#, c-format
-msgid "GlidePoint"
+msgid ""
+"You can add additional entries in yaboot for other operating systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"For other OSs, the entry consists only of a label and the \"root\"\n"
+"partition.\n"
+"\n"
+"For Linux, there are a few possible options:\n"
+"\n"
+" * Label: this is the name you will have to type at the yaboot prompt to\n"
+"select this boot option.\n"
+"\n"
+" * Image: this is the name of the kernel to boot. Typically, vmlinux or a\n"
+"variation of vmlinux with an extension.\n"
+"\n"
+" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
+"\n"
+" * Append: on Apple hardware, the kernel append option is often used to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button\n"
+"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
+"The following are some examples:\n"
+"\n"
+" 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 4096 Kbytes. If you\n"
+"need to allocate a large ramdisk, this option can be used to specify a\n"
+"ramdisk larger than the default.\n"
+"\n"
+" * Read-write: normally the \"root\" partition is initially mounted as\n"
+"read-only, to allow a file system check before the system becomes ``live''.\n"
+"You can override the default with this option.\n"
+"\n"
+" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
+"problematic, you can select this option to boot in ``novideo'' mode, with\n"
+"native frame buffer support.\n"
+"\n"
+" * Default: selects this entry as being the default Linux selection,\n"
+"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
+"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: help.pm:854
#, c-format
-msgid "Proxies configuration"
+msgid ""
+"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
+"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
+"detected and installed in the bootloader menu. If this is not the case, you\n"
+"can add an entry by hand in this screen. Be careful to choose the correct\n"
+"parameters.\n"
+"\n"
+"Yaboot's main options are:\n"
+"\n"
+" * Init Message: a simple text message displayed before the boot prompt.\n"
+"\n"
+" * Boot Device: indicates where you want to place the information required\n"
+"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
+"to hold this information.\n"
+"\n"
+" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
+"yaboot. The first delay is measured in seconds and at this point, you can\n"
+"choose between CD, OF boot, MacOS or Linux;\n"
+"\n"
+" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
+"After selecting Linux, you will have this delay in 0.1 second increments\n"
+"before your default kernel description is selected;\n"
+"\n"
+" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
+"at the first boot prompt.\n"
+"\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt.\n"
+"\n"
+" * Default OS: you can select which OS will boot by default when the Open\n"
+"Firmware Delay expires."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: help.pm:886
#, c-format
msgid ""
-"Start: sector %s\n"
-""
+"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
+"If you notice the sound card displayed is not the one that is actually\n"
+"present on your system, you can click on the button and choose another\n"
+"driver."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: help.pm:889 help.pm:951 install_steps_interactive.pm:958 install_steps_interactive.pm:975
#, c-format
-msgid "No Mask"
+msgid "Sound card"
msgstr ""
-#: ../../standalone/drakgw:1
+#: help.pm:892
#, c-format
-msgid "Network interface already configured"
+msgid ""
+"As a review, DrakX will present a summary of information it has about your\n"
+"system. Depending on your installed hardware, you may have some or all of\n"
+"the following entries. Each entry is made up of the configuration item to\n"
+"be configured, followed by a quick summary of the current configuration.\n"
+"Click on the corresponding \"%s\" button to change that.\n"
+"\n"
+" * \"%s\": check the current keyboard map configuration and change that if\n"
+"necessary.\n"
+"\n"
+" * \"%s\": check the current country selection. If you are not in this\n"
+"country, click on the \"%s\" button and choose another one. If your country\n"
+"is not in the first list shown, click the \"%s\" button to get the complete\n"
+"country list.\n"
+"\n"
+" * \"%s\": By default, DrakX deduces your time zone based on the country\n"
+"you have chosen. You can click on the \"%s\" button here if this is not\n"
+"correct.\n"
+"\n"
+" * \"%s\": check the current mouse configuration and click on the button to\n"
+"change it if necessary.\n"
+"\n"
+" * \"%s\": clicking on the \"%s\" button will open the printer\n"
+"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+"Guide'' for more information on how to setup a new printer. The interface\n"
+"presented there is similar to the one used during installation.\n"
+"\n"
+" * \"%s\": if a sound card is detected on your system, it is displayed\n"
+"here. If you notice the sound card displayed is not the one that is\n"
+"actually present on your system, you can click on the button and choose\n"
+"another driver.\n"
+"\n"
+" * \"%s\": by default, DrakX configures your graphical interface in\n"
+"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
+"\"%s\" to reconfigure your graphical interface.\n"
+"\n"
+" * \"%s\": if a TV card is detected on your system, it is displayed here.\n"
+"If you have a TV card and it is not detected, click on \"%s\" to try to\n"
+"configure it manually.\n"
+"\n"
+" * \"%s\": if an ISDN card is detected on your system, it will be displayed\n"
+"here. You can click on \"%s\" to change the parameters associated with the\n"
+"card.\n"
+"\n"
+" * \"%s\": If you want to configure your Internet or local network access\n"
+"now.\n"
+"\n"
+" * \"%s\": this entry allows you to redefine the security level as set in a\n"
+"previous step ().\n"
+"\n"
+" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
+"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
+"the corresponding section of the ``Starter Guide'' for details about\n"
+"firewall settings.\n"
+"\n"
+" * \"%s\": if you wish to change your bootloader configuration, click that\n"
+"button. This should be reserved to advanced users.\n"
+"\n"
+" * \"%s\": here you'll be able to fine control which services will be run\n"
+"on your machine. If you plan to use this machine as a server it's a good\n"
+"idea to review this setup."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: help.pm:951 install_steps_interactive.pm:114 install_steps_interactive.pm:895 standalone/keyboarddrake:23
#, c-format
-msgid "Couldn't access the floppy!"
+msgid "Keyboard"
msgstr ""
-#: ../../install_messages.pm:1
+#: help.pm:951 install_steps_interactive.pm:917
#, c-format
-msgid ""
-"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, the\n"
-"MP3 decoders included may require a licence for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a patent\n"
-"may be applicable to you, check your local laws."
+msgid "Timezone"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: help.pm:951
#, c-format
-msgid "Mail Server"
+msgid "Graphical Interface"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: help.pm:951 install_steps_interactive.pm:991
#, c-format
-msgid "Please click on a partition"
+msgid "TV card"
msgstr ""
-#: ../../printer/main.pm:1
+#: help.pm:951
#, c-format
-msgid "Multi-function device on HP JetDirect"
+msgid "ISDN card"
msgstr ""
-#: ../../any.pm:1 ../../standalone/drakbackup:1
+#: help.pm:951 install_steps_interactive.pm:1009 standalone/drakbackup:2508
#, c-format
-msgid "Linux"
+msgid "Network"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: help.pm:951 install_steps_interactive.pm:1023
#, c-format
-msgid "Have a nice day!"
+msgid "Security Level"
msgstr ""
-#: ../../help.pm:1
+#: help.pm:951 install_steps_interactive.pm:1037
#, c-format
-msgid "/dev/fd0"
+msgid "Firewall"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: help.pm:951 install_steps_interactive.pm:1051
#, c-format
-msgid "Upgrade %s"
+msgid "Bootloader"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: help.pm:951 install_steps_interactive.pm:1061 services.pm:195
#, c-format
-msgid "Select Printer Connection"
+msgid "Services"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: help.pm:954
#, c-format
-msgid "Scanning for TV channels in progress ..."
+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 this partition\n"
+"will be lost and will not be recoverable!"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: help.pm:959
#, c-format
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"Click on \"%s\" if you want to delete all data and partitions present on\n"
+"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
+"to recover any data and partitions present on this hard drive, including\n"
+"any Windows data.\n"
+"\n"
+"Click on \"%s\" to stop this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: install2.pm:119
#, c-format
-msgid "IP Range Start:"
+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 ""
-#: ../../services.pm:1
+#: install2.pm:169
#, c-format
-msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd disables\n"
-"all of the services it is responsible for."
+msgid "You must also format %s"
msgstr ""
-#: ../../standalone/draksplash:1
+#: install_any.pm:407
#, c-format
-msgid "the height of the progress bar"
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_any.pm:428
#, c-format
msgid ""
+"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
-"- Save via %s on host: %s\n"
+"\n"
+"Do you really want to remove these packages?\n"
""
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: install_any.pm:806
#, c-format
-msgid "Argentina"
+msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: install_any.pm:810
#, c-format
-msgid "Domain Name Server"
+msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../standalone/draksec:1
+#: install_any.pm:822
#, c-format
-msgid "Security Level:"
+msgid "To use this saved packages selection, boot installation with ``linux defcfg=floppy''"
msgstr ""
-#: ../../fsedit.pm:1
+#: install_any.pm:845 partition_table.pm:795
#, c-format
-msgid "Mount points must begin with a leading /"
+msgid "Error reading file %s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_any.pm:962
#, c-format
-msgid "Choose your CD/DVD device"
+msgid "An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: install_gtk.pm:153
#, c-format
-msgid "CUPS server"
+msgid "System installation"
msgstr ""
-#: ../../standalone/logdrake:1
+#: install_gtk.pm:156
#, c-format
-msgid "Postfix Mail Server"
+msgid "System configuration"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: install_interactive.pm:22
#, c-format
-msgid "Quit without saving"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-#: ../../lang.pm:1
+#: install_interactive.pm:62
#, c-format
-msgid "Yemen"
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-#: ../advertising/11-mnf.pl:1
+#: install_interactive.pm:67
#, c-format
-msgid "This product is available on the MandrakeStore Web site."
+msgid ""
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: install_interactive.pm:70 install_steps.pm:199
#, c-format
-msgid ""
-"=> There are many things to choose from (%s).\n"
-""
+msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../steps.pm:1
+#: install_interactive.pm:97
#, c-format
-msgid "Hard drive detection"
+msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../standalone/drakclock:1
+#: install_interactive.pm:105
#, c-format
-msgid "GMT - DrakClock"
+msgid "Use existing partitions"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: install_interactive.pm:107
#, c-format
-msgid ""
-"An error occurred:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"This may come from corrupted system configuration files\n"
-"on the USB key, in this case removing them and then\n"
-"rebooting Mandrake Move would fix the problem. To do\n"
-"so, click on the corresponding button.\n"
-"\n"
-"\n"
-"You may also want to reboot and remove the USB key, or\n"
-"examine its contents under another OS, or even have\n"
-"a look at log files in console #3 and #4 to try to\n"
-"guess what's happening."
+msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: install_interactive.pm:114
#, c-format
-msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../network/adsl.pm:1
+#: install_interactive.pm:117
#, c-format
-msgid ""
-"You need the Alcatel microcode.\n"
-"You can provide it now via a floppy or your windows partition,\n"
-"or skip and do it later."
+msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: install_interactive.pm:119
#, c-format
-msgid "Please enter the WebDAV server URL"
+msgid "Choose the sizes"
msgstr ""
-#: ../../lang.pm:1
+#: install_interactive.pm:120
#, c-format
-msgid "Tajikistan"
+msgid "Root partition size in MB: "
msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#: install_interactive.pm:121
#, c-format
-msgid "Accept"
+msgid "Swap partition size in MB: "
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: install_interactive.pm:130
#, c-format
-msgid "Description"
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
-#: ../../standalone/drakbug:1
+#: install_interactive.pm:139
#, c-format
-msgid "Please enter summary text."
+msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../fsedit.pm:1
+#: install_interactive.pm:153
#, c-format
-msgid "Error opening %s for writing: %s"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: install_interactive.pm:156
#, c-format
-msgid ""
-"Mouse type: %s\n"
-""
+msgid "Computing the size of the Windows partition"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1
+#: install_interactive.pm:163
#, c-format
-msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgid "Your Windows partition is too fragmented. Please reboot your computer under Windows, run the ``defrag'' utility, then restart the Mandrake Linux installation."
msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: install_interactive.pm:164
#, c-format
-msgid "Choose a monitor"
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-#: ../../any.pm:1
+#: install_interactive.pm:176
#, c-format
-msgid "Empty label not allowed"
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../keyboard.pm:1
+#: install_interactive.pm:177
#, c-format
-msgid "Maltese (UK)"
+msgid "partition %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: install_interactive.pm:186
#, c-format
-msgid "I can't add any more partition"
+msgid "Resizing Windows partition"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: install_interactive.pm:191
#, c-format
-msgid "Size in MB: "
+msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../printer/main.pm:1
+#: install_interactive.pm:206
#, c-format
-msgid "Remote printer"
+msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: ../../any.pm:1
+#: install_interactive.pm:211
#, c-format
-msgid "Please choose a language to use."
+msgid "Remove Windows(TM)"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: install_interactive.pm:213
#, c-format
-msgid ""
-"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."
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../any.pm:1
+#: install_interactive.pm:217
#, c-format
-msgid "I can set up your computer to automatically log on one user."
+msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_interactive.pm:230
#, c-format
-msgid "Floppy format"
+msgid "Use fdisk"
msgstr ""
-#: ../../standalone/drakfont:1
+#: install_interactive.pm:233
#, c-format
-msgid "Generic Printers"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_interactive.pm:269
#, c-format
-msgid "Please choose the printer to which the print jobs should go or enter a device name/file name in the input line"
+msgid "I can't find any room for installing"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: install_interactive.pm:273
#, c-format
-msgid "The scanners on this machine are available to other computers"
+msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../any.pm:1
+#: install_interactive.pm:279
#, c-format
-msgid "First sector of the root partition"
+msgid "Partitioning failed: %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_interactive.pm:286
#, c-format
-msgid "Alternative drivers"
+msgid "Bringing up the network"
+msgstr ""
+
+#: install_interactive.pm:291
+#, c-format
+msgid "Bringing down the network"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_messages.pm:9
#, c-format
msgid ""
+"Introduction\n"
"\n"
-"Please check all options that you need.\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 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 explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this License. \n"
+"If you disagree with any portion of the License, you are not allowed to install, duplicate or use \n"
+"the Software Products. \n"
+"Any attempt to install, duplicate or use the Software Products in a manner which does not comply \n"
+"with the terms and conditions of this License is void and will terminate your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all copies of the \n"
+"Software Products.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", with no warranty, to the \n"
+"extent permitted by law.\n"
+"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by law, be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or inability to use the Software \n"
+"Products, even if MandrakeSoft S.A. has been advised of the possibility or occurence of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME COUNTRIES\n"
+"\n"
+"To the extent permitted by law, 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 damages for loss of business, interruption of business, financial loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential loss) arising out \n"
+"of the possession and use of software components or arising out of downloading software components \n"
+"from one of Mandrake Linux sites which are prohibited or restricted in some countries by local laws.\n"
+"This limited liability applies to, but is not restricted to, the strong cryptography components \n"
+"included in the Software Products.\n"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please read carefully the terms \n"
+"and conditions of the license agreement for each component before using any component. Any question \n"
+"on a component license should be addressed to the component author and not to 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"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"All rights to the components of the Software Products belong to their respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software programs.\n"
+"MandrakeSoft S.A. reserves its rights to modify or adapt the Software Products, as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of MandrakeSoft S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"If any portion of this agreement is held void, illegal or inapplicable by a court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other applicable sections of the \n"
+"agreement.\n"
+"The terms and conditions of this License are governed by the Laws of France.\n"
+"All disputes on the terms of this license will preferably be settled out of court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of Paris - France.\n"
+"For any question on this document, please contact MandrakeSoft S.A. \n"
""
msgstr ""
-#: ../../any.pm:1
+#: install_messages.pm:89
#, c-format
-msgid "Initrd"
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a patent\n"
+"may be applicable to you, check your local laws."
msgstr ""
-#: ../../lang.pm:1
+#: install_messages.pm:96
#, c-format
-msgid "Cape Verde"
+msgid ""
+"\n"
+"Warning\n"
+"\n"
+"Please read carefully the terms below. If you disagree with any\n"
+"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
+"to continue the installation without using these media.\n"
+"\n"
+"\n"
+"Some components contained in the next CD media are not governed\n"
+"by the GPL License or similar agreements. Each such component is then\n"
+"governed by the terms and conditions of its own specific license. \n"
+"Please read carefully and comply with such specific licenses before \n"
+"you use or redistribute the said components. \n"
+"Such licenses will in general prevent the transfer, duplication \n"
+"(except for backup purposes), redistribution, reverse engineering, \n"
+"de-assembly, de-compilation or modification of the component. \n"
+"Any breach of agreement will immediately terminate your rights under \n"
+"the specific license. Unless the specific license terms grant you such\n"
+"rights, you usually cannot install the programs on more than one\n"
+"system, or adapt it to be used on a network. In doubt, please contact \n"
+"directly the distributor or editor of the component. \n"
+"Transfer to third parties or copying of such components including the \n"
+"documentation is usually forbidden.\n"
+"\n"
+"\n"
+"All rights to the components of the next CD media belong to their \n"
+"respective authors and are protected by intellectual property and \n"
+"copyright laws applicable to software programs.\n"
+""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_messages.pm:128
#, c-format
-msgid "whether this cpu has the Cyrix 6x86 Coma bug"
+msgid ""
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
+"\n"
+"\n"
+"For information on fixes which are available for this release of Mandrake Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../standalone/printerdrake:1
+#: install_messages.pm:141
#, c-format
-msgid "Loading printer configuration... Please wait"
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_steps.pm:234
#, c-format
-msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
+msgid "Duplicate mount point %s"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps.pm:399
#, c-format
-msgid "Guam"
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+""
msgstr ""
-#: ../../scanner.pm:1
+#: install_steps.pm:530
#, c-format
-msgid "Your scanner(s) will not be available for non-root users."
+msgid "No floppy drive available"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_auto_install.pm:76 install_steps_stdio.pm:27
#, c-format
-msgid "Please choose the port that your printer is connected to or enter a device name/file name in the input line"
+msgid ""
+"Entering step `%s'\n"
+""
msgstr ""
-#: ../../standalone/logdrake:1
+#: install_steps_gtk.pm:176
#, c-format
-msgid "/Options/Test"
+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 this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../security/level.pm:1
+#: install_steps_gtk.pm:243 install_steps_interactive.pm:583
#, c-format
-msgid ""
-"This level is to be used with care. It makes your system more easy to use,\n"
-"but very sensitive. It must not be used for a machine connected to others\n"
-"or to the Internet. There is no password access."
+msgid "Package Group Selection"
msgstr ""
-#: ../../fs.pm:1 ../../fs.pm:1
+#: install_steps_gtk.pm:303 install_steps_interactive.pm:523
#, c-format
-msgid "Mounting partition %s"
+msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:349
#, c-format
-msgid "User name"
+msgid "Bad package"
msgstr ""
-#: ../../standalone/drakbug:1
+#: install_steps_gtk.pm:351
#, c-format
-msgid "Userdrake"
+msgid "Version: "
msgstr ""
-#: ../../install_interactive.pm:1
+#: install_steps_gtk.pm:352
#, c-format
-msgid "Which partition do you want to use for Linux4Win?"
+msgid "Size: "
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: install_steps_gtk.pm:352
#, c-format
-msgid "due to missing %s"
+msgid ""
+"%d KB\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:353
#, c-format
-msgid "Test pages"
+msgid "Importance: "
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: install_steps_gtk.pm:386
#, c-format
-msgid "Logical volume name "
+msgid "You can't select/unselect this package"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_gtk.pm:390
#, c-format
-msgid ""
-"List of data to restore:\n"
-"\n"
-""
+msgid "due to missing %s"
msgstr ""
-#: ../../fs.pm:1 ../../fs.pm:1
+#: install_steps_gtk.pm:391
#, c-format
-msgid "Checking %s"
+msgid "due to unsatisfied %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:392
#, c-format
-msgid "TCP/Socket Printer Options"
+msgid "trying to promote %s"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: install_steps_gtk.pm:393
#, c-format
-msgid "Card mem (DMA)"
+msgid "in order to keep %s"
msgstr ""
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
+#: install_steps_gtk.pm:398
#, c-format
-msgid "Disconnecting from Internet "
+msgid "You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: install_steps_gtk.pm:401
#, c-format
-msgid "France"
+msgid "The following packages are going to be installed"
msgstr ""
-#: ../../standalone/drakperm:1
+#: install_steps_gtk.pm:402
#, c-format
-msgid "browse"
+msgid "The following packages are going to be removed"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:428
#, c-format
-msgid "Checking installed software..."
+msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:430
#, c-format
-msgid "Remote printer name missing!"
+msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:433
#, c-format
msgid ""
-"Do you want to enable printing on printers in the local network?\n"
-""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_gtk.pm:436
#, c-format
-msgid "Turkey"
+msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../network/adsl.pm:1
+#: install_steps_gtk.pm:441
#, c-format
-msgid "Alcatel speedtouch usb"
+msgid "Show automatically selected packages"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_steps_gtk.pm:446
#, c-format
-msgid "Number of buttons"
+msgid "Load/Save on floppy"
msgstr ""
-#: ../../keyboard.pm:1
+#: install_steps_gtk.pm:447
#, c-format
-msgid "Vietnamese \"numeric row\" QWERTY"
+msgid "Updating package selection"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_steps_gtk.pm:452
#, c-format
-msgid "Module"
+msgid "Minimal install"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:466 install_steps_interactive.pm:431
#, c-format
-msgid "In addition, queues not created with this program or \"foomatic-configure\" cannot be transferred."
+msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
+#: install_steps_gtk.pm:482 install_steps_interactive.pm:669
#, c-format
-msgid "Hardware"
+msgid "Installing"
msgstr ""
-#: ../../keyboard.pm:1
+#: install_steps_gtk.pm:488
#, c-format
-msgid "Ctrl and Alt keys simultaneously"
+msgid "No details"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: install_steps_gtk.pm:489
#, c-format
-msgid "United States"
+msgid "Estimating"
msgstr ""
-#: ../../security/l10n.pm:1
+#: install_steps_gtk.pm:495
#, c-format
-msgid "User umask"
+msgid "Time remaining "
msgstr ""
-#: ../../any.pm:1
+#: install_steps_gtk.pm:507
#, c-format
-msgid "Default OS?"
+msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../keyboard.pm:1
+#: install_steps_gtk.pm:573
#, c-format
-msgid "Swiss (German layout)"
+msgid "%d packages"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: install_steps_gtk.pm:578
#, c-format
-msgid "Configure all heads independently"
+msgid "Installing package %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_gtk.pm:615 install_steps_interactive.pm:92 install_steps_interactive.pm:693
#, c-format
-msgid "Please choose the printer you want to set up. The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."
+msgid "Refuse"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: install_steps_gtk.pm:616 install_steps_interactive.pm:694
#, c-format
-msgid "NTP Server"
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../security/l10n.pm:1
+#: install_steps_gtk.pm:631 install_steps_interactive.pm:706
#, c-format
-msgid "Sulogin(8) in single user level"
+msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: install_steps_gtk.pm:631 install_steps_gtk.pm:635 install_steps_interactive.pm:706 install_steps_interactive.pm:710
#, c-format
-msgid "Load/Save on floppy"
+msgid "Go on anyway?"
msgstr ""
-#: ../../standalone/draksplash:1 ../../standalone/draksplash:1
+#: install_steps_gtk.pm:635 install_steps_interactive.pm:710
#, c-format
-msgid "This theme does not yet have a bootsplash in %s !"
+msgid "There was an error installing packages:"
msgstr ""
-#: ../../pkgs.pm:1
+#: install_steps_gtk.pm:675 install_steps_interactive.pm:877
#, c-format
-msgid "nice"
+msgid "not configured"
msgstr ""
-#: ../../Xconfig/test.pm:1
+#: install_steps_interactive.pm:85
#, c-format
-msgid "Leaving in %d seconds"
+msgid "Do you want to recover your system?"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: install_steps_interactive.pm:86
#, c-format
-msgid "Please choose which serial port your modem is connected to."
+msgid "License agreement"
msgstr ""
-#: ../../standalone/drakperm:1
+#: install_steps_interactive.pm:115
#, c-format
-msgid "Property"
+msgid "Please choose your keyboard layout."
msgstr ""
-#: ../../standalone/drakfont:1
+#: install_steps_interactive.pm:117
#, c-format
-msgid "Ghostscript"
+msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: install_steps_interactive.pm:147
#, c-format
-msgid "LAN Configuration"
+msgid "Install/Upgrade"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:148
#, c-format
-msgid "Ghana"
+msgid "Is this an install or an upgrade?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:154
#, c-format
-msgid "Path or Module required"
+msgid "Upgrade %s"
msgstr ""
-#: ../../standalone/drakfont:1
+#: install_steps_interactive.pm:164
#, c-format
-msgid "Advanced Options"
+msgid "Encryption key for %s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:181
#, c-format
-msgid "View Configuration"
+msgid "Please choose your type of mouse."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_steps_interactive.pm:190 standalone/mousedrake:56
#, c-format
-msgid "Coma bug"
+msgid "Mouse Port"
msgstr ""
-#: ../../help.pm:1
+#: install_steps_interactive.pm:191 standalone/mousedrake:57
#, c-format
-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 by another\n"
-"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
-"partitions must be defined.\n"
-"\n"
-"To create partitions, you must first select a hard drive. You can select\n"
-"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
-"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
-"\n"
-"To partition the selected hard drive, you can use these options:\n"
-"\n"
-" * \"%s\": this option deletes all partitions on the selected hard drive\n"
-"\n"
-" * \"%s\": this option enables you to automatically create ext3 and swap\n"
-"partitions in the free space of your hard drive\n"
-"\n"
-"\"%s\": gives access to additional features:\n"
-"\n"
-" * \"%s\": saves the partition table to a floppy. Useful for later\n"
-"partition-table recovery if necessary. It is strongly recommended that you\n"
-"perform this step.\n"
-"\n"
-" * \"%s\": allows you to restore a previously saved partition table from a\n"
-"floppy disk.\n"
-"\n"
-" * \"%s\": if your partition table is damaged, you can try to recover it\n"
-"using this option. Please be careful and remember that it doesn't always\n"
-"work.\n"
-"\n"
-" * \"%s\": discards all changes and reloads the partition table that was\n"
-"originally on the hard drive.\n"
-"\n"
-" * \"%s\": unchecking this option will force users to manually mount and\n"
-"unmount removable media such as floppies and CD-ROMs.\n"
-"\n"
-" * \"%s\": use this option if you wish to use a wizard to partition your\n"
-"hard drive. This is recommended if you do not have a good understanding of\n"
-"partitioning.\n"
-"\n"
-" * \"%s\": use this option to cancel your changes.\n"
-"\n"
-" * \"%s\": allows additional actions on partitions (type, options, format)\n"
-"and gives more information about the hard drive.\n"
-"\n"
-" * \"%s\": when you are finished partitioning your hard drive, this will\n"
-"save your changes back to disk.\n"
-"\n"
-"When defining the size of a partition, you can finely set the partition\n"
-"size by using the Arrow keys of your keyboard.\n"
-"\n"
-"Note: you can reach any option using the keyboard. Navigate through the\n"
-"partitions using [Tab] and the [Up/Down] arrows.\n"
-"\n"
-"When a partition is selected, you can use:\n"
-"\n"
-" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
-"\n"
-" * Ctrl-d to delete a partition\n"
-"\n"
-" * Ctrl-m to set the mount point\n"
-"\n"
-"To get information about the different file system types available, please\n"
-"read the ext2FS chapter from the ``Reference Manual''.\n"
-"\n"
-"If you are installing on a PPC machine, you will want to create a small HFS\n"
-"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
-"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
-"may find it a useful place to store a spare kernel and ramdisk images for\n"
-"emergency boot situations."
+msgid "Please choose which serial port your mouse is connected to."
msgstr ""
-#: ../../help.pm:1
+#: install_steps_interactive.pm:201
#, c-format
-msgid ""
-"Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If it is not the case, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the case that different servers are available for your card, with or\n"
-"without 3D acceleration, you are then asked to choose the server that best\n"
-"suits your needs."
+msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: install_steps_interactive.pm:203
#, c-format
-msgid "There was an error installing packages:"
+msgid "Button 2 Emulation"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:204
#, c-format
-msgid "Lexmark inkjet configuration"
+msgid "Button 3 Emulation"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: install_steps_interactive.pm:225
#, c-format
-msgid "Undo"
+msgid "PCMCIA"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: install_steps_interactive.pm:225
#, c-format
-msgid "Save partition table"
+msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: install_steps_interactive.pm:232
#, c-format
-msgid "Finnish"
+msgid "IDE"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:232
#, c-format
-msgid "Macedonia"
+msgid "Configuring IDE"
msgstr ""
-#: ../../any.pm:1
+#: install_steps_interactive.pm:252 network/tools.pm:217
#, c-format
-msgid ""
-"The per-user sharing uses the group \"fileshare\". \n"
-"You can use userdrake to add a user to this group."
+msgid "No partition available"
msgstr ""
-#: ../../keyboard.pm:1
+#: install_steps_interactive.pm:255
#, c-format
-msgid "Slovenian"
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../security/help.pm:1
+#: install_steps_interactive.pm:262
#, c-format
-msgid ""
-"Authorize:\n"
-"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if set to \"ALL\",\n"
-"\n"
-"- only local ones if set to \"LOCAL\"\n"
-"\n"
-"- none if set to \"NONE\".\n"
-"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow(5))."
+msgid "Choose the mount points"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:292
#, c-format
-msgid "Libya"
+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 ""
-#: ../../standalone/drakgw:1
+#: install_steps_interactive.pm:305
#, c-format
-msgid "Configuring scripts, installing software, starting servers..."
+msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:329
#, c-format
-msgid "Printer on parallel port #%s"
+msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: install_steps_interactive.pm:331
#, c-format
-msgid "Please enter the wireless parameters for this card:"
+msgid "Check bad blocks?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:363
#, c-format
-msgid ""
-"\n"
-"- Burn to CD"
+msgid "Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)"
msgstr ""
-#: ../../any.pm:1
+#: install_steps_interactive.pm:366
#, c-format
-msgid "Table"
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../fs.pm:1
+#: install_steps_interactive.pm:373
#, c-format
-msgid "I don't know how to format %s in type %s"
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: install_steps_interactive.pm:374 install_steps_interactive.pm:393
#, c-format
-msgid "Model"
+msgid "Looking for available packages..."
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:377
#, c-format
-msgid "USB printer #%s"
+msgid "Looking at packages already installed..."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: install_steps_interactive.pm:381
#, c-format
-msgid "Stop Server"
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#: install_steps_interactive.pm:402
+#, c-format
+msgid "Your system does not have enough space left for installation or upgrade (%d > %d)"
msgstr ""
-#: ../../standalone/drakboot:1
+#: install_steps_interactive.pm:443
#, c-format
msgid ""
-"\n"
-"Select the theme for\n"
-"lilo and bootsplash,\n"
-"you can choose\n"
-"them separately"
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../harddrake/data.pm:1
+#: install_steps_interactive.pm:445
#, c-format
-msgid "Modem"
+msgid "Load from floppy"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:445
#, c-format
-msgid "Tuvalu"
+msgid "Save on floppy"
msgstr ""
-#: ../../help.pm:1 ../../network/netconnect.pm:1
+#: install_steps_interactive.pm:449
#, c-format
-msgid "Use auto detection"
+msgid "Package selection"
msgstr ""
-#: ../../services.pm:1
+#: install_steps_interactive.pm:449
#, c-format
-msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste operations,\n"
-"and includes support for pop-up menus on the console."
+msgid "Loading from floppy"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: install_steps_interactive.pm:454
#, c-format
-msgid "Started on boot"
+msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
+#: install_steps_interactive.pm:536
#, c-format
-msgid "Join the MandrakeSoft support teams and the Linux Community online to share your knowledge and help others by becoming a recognized Expert on the online technical support website:"
+msgid "Selected size is larger than available space"
msgstr ""
-#: ../../security/l10n.pm:1
+#: install_steps_interactive.pm:551
#, c-format
-msgid "No password aging for"
+msgid "Type of install"
msgstr ""
-#: ../../standalone/draksec:1
+#: install_steps_interactive.pm:552
#, c-format
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need an explanation, look at the help tooltip.\n"
-""
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:556
#, c-format
-msgid "Automatically find available printers on remote machines"
+msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:557
#, c-format
-msgid "East Timor"
+msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:600 standalone/drakxtv:53
#, c-format
-msgid "On Tape Device"
+msgid "All"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:644
#, c-format
msgid ""
-"\n"
-"- Save to Tape on device: %s"
+"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 ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:649
#, c-format
-msgid "Login name"
+msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../security/l10n.pm:1
+#: install_steps_interactive.pm:669
#, c-format
-msgid "Report unowned files"
+msgid "Preparing installation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:678
#, c-format
-msgid "Installing Foomatic..."
+msgid ""
+"Installing package %s\n"
+"%d%%"
msgstr ""
-#: ../../standalone/XFdrake:1
+#: install_steps_interactive.pm:724
#, c-format
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgid "Post-install configuration"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: install_steps_interactive.pm:730
#, c-format
-msgid "The network needs to be restarted. Do you want to restart it ?"
+msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../standalone/drakbug:1 ../../standalone/drakbug:1
+#: install_steps_interactive.pm:736
#, c-format
-msgid "Package: "
+msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../standalone/drakboot:1
+#: install_steps_interactive.pm:757
#, c-format
-msgid "Can't write /etc/sysconfig/bootsplash."
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:778
#, c-format
-msgid "SECURITY WARNING!"
+msgid "Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../standalone/drakfont:1
+#: install_steps_interactive.pm:782
#, c-format
-msgid "StarOffice"
+msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: install_steps_interactive.pm:796
#, c-format
-msgid "Operating frequency"
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../standalone/drakboot:1
+#: install_steps_interactive.pm:800
#, c-format
-msgid "No, I don't want autologin"
+msgid "Unable to contact mirror %s"
msgstr ""
-#: ../../standalone/drakbug:1
+#: install_steps_interactive.pm:800
#, c-format
-msgid "Windows Migration tool"
+msgid "Would you like to try again?"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
+#: install_steps_interactive.pm:826 standalone/drakclock:42
#, c-format
-msgid "All languages"
+msgid "Which is your timezone?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: install_steps_interactive.pm:831
#, c-format
-msgid "Removing %s"
+msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: install_steps_interactive.pm:839
#, c-format
-msgid ""
-"%s not found...\n"
-""
+msgid "NTP Server"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: install_steps_interactive.pm:881 steps.pm:30
#, c-format
-msgid "Testing your connection..."
+msgid "Summary"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: install_steps_interactive.pm:894 install_steps_interactive.pm:902 install_steps_interactive.pm:916 install_steps_interactive.pm:923 install_steps_interactive.pm:1060 services.pm:135 standalone/drakbackup:2018
#, c-format
-msgid "Cache size"
+msgid "System"
msgstr ""
-#: ../../security/level.pm:1
+#: install_steps_interactive.pm:930 install_steps_interactive.pm:957 install_steps_interactive.pm:974 install_steps_interactive.pm:990 install_steps_interactive.pm:1001
#, c-format
-msgid "Passwords are now enabled, but use as a networked computer is still not recommended."
+msgid "Hardware"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: install_steps_interactive.pm:936 install_steps_interactive.pm:945
#, c-format
-msgid "Start sector: "
+msgid "Remote CUPS server"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:936
#, c-format
-msgid "Congo (Brazzaville)"
+msgid "No printer"
msgstr ""
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#: install_steps_interactive.pm:978
#, c-format
-msgid "The package %s needs to be installed. Do you want to install it?"
+msgid "Do you have an ISA sound card?"
msgstr ""
-#: ../../standalone/drakperm:1
+#: install_steps_interactive.pm:980
#, c-format
-msgid "Read"
+msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:982
#, c-format
-msgid "Seychelles"
+msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:1002
#, c-format
-msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-detection with the models listed in its printer database to find the best match. This choice can be wrong, especially when your printer is not listed at all in the database. So check whether the choice is correct and click \"The model is correct\" if so and if not, click \"Select model manually\" so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
+msgid "Graphical interface"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:1008
#, c-format
-msgid "Bad password on %s"
+msgid "Network & Internet"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_interactive.pm:1022 install_steps_interactive.pm:1036 steps.pm:20
#, c-format
-msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
+msgid "Security"
msgstr ""
-#: ../../keyboard.pm:1
+#: install_steps_interactive.pm:1041
#, c-format
-msgid "Right Control key"
+msgid "activated"
msgstr ""
-#: ../../network/tools.pm:1
+#: install_steps_interactive.pm:1041
#, c-format
-msgid "Insert a FAT formatted floppy in drive %s with %s in root directory and press %s"
+msgid "disabled"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:1050
#, c-format
-msgid "Zambia"
+msgid "Boot"
msgstr ""
-#: ../../security/level.pm:1
+#. -PO: example: lilo-graphic on /dev/hda1
+#: install_steps_interactive.pm:1054
#, c-format
-msgid "Security Administrator (login or email)"
+msgid "%s on %s"
msgstr ""
-#: ../../standalone/drakgw:1
+#: install_steps_interactive.pm:1065 services.pm:177
#, c-format
-msgid "Sorry, we support only 2.4 kernels."
+msgid "Services: %d activated for %d registered"
msgstr ""
-#: ../../keyboard.pm:1
+#: install_steps_interactive.pm:1075
#, c-format
-msgid "Romanian (qwerty)"
+msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: install_steps_interactive.pm:1133
#, c-format
-msgid "Under Devel ... please wait."
+msgid "Set root password and network authentication methods"
msgstr ""
-#: ../../lang.pm:1
+#: install_steps_interactive.pm:1134
#, c-format
-msgid "Egypt"
+msgid "Set root password"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
+#: install_steps_interactive.pm:1144
#, c-format
-msgid "Czech Republic"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
+#: install_steps_interactive.pm:1149 network/netconnect.pm:492 standalone/drakauth:26 standalone/drakconnect:737 standalone/logdrake:108
#, c-format
-msgid "Sound card"
+msgid "Authentication"
msgstr ""
-#: ../../standalone/drakfont:1
+#: install_steps_interactive.pm:1180
#, c-format
-msgid "Import Fonts"
+msgid "Preparing bootloader..."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: install_steps_interactive.pm:1190
#, c-format
msgid ""
-"You have one big MicroSoft Windows partition.\n"
-"I suggest you first resize that partition\n"
-"(click on it, then click on \"Resize\")"
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
msgstr ""
-#: ../../standalone/drakfont:1
+#: install_steps_interactive.pm:1196
#, c-format
-msgid "Suppress Temporary Files"
+msgid "Do you want to use aboot?"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: install_steps_interactive.pm:1199
#, c-format
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"\n"
-""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: install_steps_interactive.pm:1210
#, c-format
-msgid "Change partition type"
+msgid "Installing bootloader"
msgstr ""
-#: ../../help.pm:1
+#: install_steps_interactive.pm:1217
#, c-format
-msgid ""
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"hardware. Choose the one that best suits your needs (you will be able to\n"
-"change that after installation though). A sample of the chosen\n"
-"configuration is shown in the monitor."
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../standalone/draksec:1
+#: install_steps_interactive.pm:1222
#, c-format
-msgid "Network Options"
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../security/l10n.pm:1
+#: install_steps_interactive.pm:1264 standalone/drakautoinst:75
#, c-format
-msgid "Enable msec hourly security check"
+msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../standalone/drakboot:1
+#: install_steps_interactive.pm:1268
#, c-format
-msgid ""
-"Display theme\n"
-"under console"
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../printer/cups.pm:1
+#: install_steps_interactive.pm:1279
#, c-format
-msgid "(on %s)"
+msgid ""
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
-#: ../../mouse.pm:1
+#: install_steps_interactive.pm:1294
#, c-format
-msgid "MM Series"
+msgid "Generate auto install floppy"
msgstr ""
-#: ../../security/level.pm:1
+#: install_steps_interactive.pm:1296
#, c-format
-msgid "A library which defends against buffer overflow and format string attacks."
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+""
msgstr ""
-#: ../../standalone/net_monitor:1
+#: install_steps_newt.pm:20
#, c-format
-msgid "average"
+msgid "Mandrake Linux Installation %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: install_steps_newt.pm:33
#, c-format
-msgid "New printer name"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../../fs.pm:1
+#: interactive.pm:173
#, c-format
-msgid ""
-"Allow an ordinary user to mount the file system. The\n"
-"name of the mounting user is written to mtab so that he can unmount the file\n"
-"system again. This option implies the options noexec, nosuid, and nodev\n"
-"(unless overridden by subsequent options, as in the option line\n"
-"user,exec,dev,suid )."
+msgid "Choose a file"
msgstr ""
-#: ../../lang.pm:1
+#: interactive.pm:375
#, c-format
-msgid "Equatorial Guinea"
+msgid "Basic"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: interactive.pm:406 interactive/newt.pm:300 ugtk2.pm:493
#, c-format
-msgid "Backup System"
+msgid "Finish"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: interactive/newt.pm:83
#, c-format
-msgid "Build Backup"
+msgid "Do"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: interactive/stdio.pm:29 interactive/stdio.pm:149
#, c-format
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s <file>\" or \"%s <file>\".\n"
+"Bad choice, try again\n"
""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: interactive/stdio.pm:30 interactive/stdio.pm:150
#, c-format
-msgid "Currently, no alternative possibility is available"
+msgid "Your choice? (default %s) "
msgstr ""
-#: ../../keyboard.pm:1
+#: interactive/stdio.pm:54
#, c-format
-msgid "Romanian (qwertz)"
+msgid ""
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
-#: ../../services.pm:1
+#: interactive/stdio.pm:70
#, c-format
-msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
+msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: interactive/stdio.pm:95
#, c-format
-msgid "Write Config"
+msgid "Button `%s': %s"
msgstr ""
-#: ../../lang.pm:1
+#: interactive/stdio.pm:96
#, c-format
-msgid "Kiribati"
+msgid "Do you want to click on this button?"
msgstr ""
-#: ../../mouse.pm:1
+#: interactive/stdio.pm:105
#, c-format
-msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
+msgid "Your choice? (default `%s'%s) "
msgstr ""
-#: ../../standalone/drakbackup:1
+#: interactive/stdio.pm:105
#, c-format
-msgid "Other (not drakbackup) keys in place already"
+msgid " enter `void' for void entry"
msgstr ""
-#: ../../help.pm:1
+#: interactive/stdio.pm:123
#, c-format
msgid ""
-"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
-"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
-"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
-"\n"
-"You will be presented with a list of different parameters to change to get\n"
-"an optimal graphical display: Graphic Card\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"graphic card installed on your machine. If it is not the case, you can\n"
-"choose from this list the card you actually have installed.\n"
-"\n"
-" In the case that different servers are available for your card, with or\n"
-"without 3D acceleration, you are then asked to choose the server that best\n"
-"suits your needs.\n"
-"\n"
-"\n"
-"\n"
-"Monitor\n"
-"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is incorrect, you can choose from\n"
-"this list the monitor you actually have connected to your computer.\n"
-"\n"
-"\n"
-"\n"
-"Resolution\n"
-"\n"
-" Here you can choose the resolutions and color depths available for your\n"
-"hardware. Choose the one that best suits your needs (you will be able to\n"
-"change that after installation though). A sample of the chosen\n"
-"configuration is shown in the monitor.\n"
-"\n"
-"\n"
-"\n"
-"Test\n"
-"\n"
-" the system will try to open a graphical screen at the desired\n"
-"resolution. If you can see the message during the test and answer \"%s\",\n"
-"then DrakX will proceed to the next step. If you cannot see the message, it\n"
-"means that some part of the autodetected configuration was incorrect and\n"
-"the test will automatically end after 12 seconds, bringing you back to the\n"
-"menu. Change settings until you get a correct graphical display.\n"
-"\n"
-"\n"
-"\n"
-"Options\n"
-"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
+"=> There are many things to choose from (%s).\n"
+""
msgstr ""
-#: ../../standalone/draksplash:1
+#: interactive/stdio.pm:126
#, c-format
-msgid "Browse"
+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 ""
-#: ../../harddrake/data.pm:1
+#: interactive/stdio.pm:139
#, c-format
-msgid "CDROM"
+msgid ""
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: interactive/stdio.pm:146
#, c-format
-msgid "Do you want to try to connect to the Internet now?"
+msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm:1
+#: keyboard.pm:137 keyboard.pm:169
#, c-format
-msgid "Belgian"
+msgid "Czech (QWERTZ)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: keyboard.pm:138 keyboard.pm:171
#, c-format
-msgid "Do you have an ISA sound card?"
+msgid "German"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: keyboard.pm:139
#, c-format
-msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+msgid "Dvorak"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: keyboard.pm:140 keyboard.pm:179
#, c-format
-msgid "Windows"
+msgid "Spanish"
msgstr ""
-#: ../../common.pm:1
+#: keyboard.pm:141 keyboard.pm:180
#, c-format
-msgid "Can't make screenshots before partitioning"
+msgid "Finnish"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: keyboard.pm:142 keyboard.pm:181
#, c-format
-msgid "Host Name"
+msgid "French"
msgstr ""
-#: ../../standalone/logdrake:1
+#: keyboard.pm:143 keyboard.pm:217
#, c-format
-msgid "/File/Save _As"
+msgid "Norwegian"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:144
#, c-format
-msgid "To get access to printers on remote CUPS servers in your local network you only need to turn on the \"Automatically find available printers on remote machines\" option; the CUPS servers inform your machine automatically about their printers. All printers currently known to your machine are listed in the \"Remote printers\" section in the main window of Printerdrake. If your CUPS server(s) is/are not in your local network, you have to enter the IP address(es) and optionally the port number(s) here to get the printer information from the server(s)."
+msgid "Polish"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: keyboard.pm:145 keyboard.pm:226
#, c-format
-msgid "%s is not in the scanner database, configure it manually?"
+msgid "Russian"
msgstr ""
-#: ../../any.pm:1
+#: keyboard.pm:147 keyboard.pm:230
#, c-format
-msgid "Delay before booting default image"
+msgid "Swedish"
msgstr ""
-#: ../../any.pm:1
+#: keyboard.pm:148 keyboard.pm:249
#, c-format
-msgid "Restrict command line options"
+msgid "UK keyboard"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: keyboard.pm:149 keyboard.pm:250
#, c-format
-msgid "East Europe"
+msgid "US keyboard"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: keyboard.pm:151
#, c-format
-msgid "Use free space"
+msgid "Albanian"
msgstr ""
-#: ../../network/adsl.pm:1
+#: keyboard.pm:152
#, c-format
-msgid "use dhcp"
+msgid "Armenian (old)"
msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/logdrake:1
+#: keyboard.pm:153
#, c-format
-msgid "Mail alert"
+msgid "Armenian (typewriter)"
msgstr ""
-#: ../../lang.pm:1
+#: keyboard.pm:154
#, c-format
-msgid "Uzbekistan"
+msgid "Armenian (phonetic)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:155
#, c-format
-msgid "Detected %s"
+msgid "Arabic"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: keyboard.pm:156
#, c-format
-msgid "/Autodetect _printers"
+msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: keyboard.pm:158
#, c-format
-msgid "Finish"
+msgid "Belgian"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: keyboard.pm:159
#, c-format
-msgid "Show automatically selected packages"
+msgid "Bengali"
msgstr ""
-#: ../../lang.pm:1
+#: keyboard.pm:160
#, c-format
-msgid "Togo"
+msgid "Bulgarian (phonetic)"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: keyboard.pm:161
#, c-format
-msgid "CPU flags reported by the kernel"
+msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: keyboard.pm:162
#, c-format
-msgid "Something went wrong! - Is mkisofs installed?"
+msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: keyboard.pm:165
#, c-format
-msgid "16 MB"
+msgid "Bosnian"
msgstr ""
-#: ../../standalone/drakups:1
+#: keyboard.pm:166
#, c-format
-msgid ""
-"We're going to add an UPS device.\n"
-"\n"
-"Do you prefer autodetect UPS devices connected to this machine or ?"
+msgid "Belarusian"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../install_steps_interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: keyboard.pm:167
#, c-format
-msgid "Please try again"
+msgid "Swiss (German layout)"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: keyboard.pm:168
#, c-format
-msgid "The model is correct"
+msgid "Swiss (French layout)"
msgstr ""
-#: ../../install_interactive.pm:1
+#: keyboard.pm:170
#, c-format
-msgid "FAT resizing failed: %s"
+msgid "Czech (QWERTY)"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: keyboard.pm:172
#, c-format
-msgid "Individual package selection"
+msgid "German (no dead keys)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: keyboard.pm:173
#, c-format
-msgid "This partition is not resizeable"
+msgid "Devanagari"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: keyboard.pm:174
#, c-format
-msgid "Location"
+msgid "Danish"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: keyboard.pm:175
#, c-format
-msgid "USA (cable-hrc)"
+msgid "Dvorak (US)"
msgstr ""
-#: ../../lang.pm:1
+#: keyboard.pm:176
#, c-format
-msgid "Guatemala"
+msgid "Dvorak (Norwegian)"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: keyboard.pm:177
#, c-format
-msgid "Journalised FS"
+msgid "Dvorak (Swedish)"
msgstr ""
-#: ../../security/l10n.pm:1
+#: keyboard.pm:178
#, c-format
-msgid "Ethernet cards promiscuity check"
+msgid "Estonian"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: keyboard.pm:182
#, c-format
-msgid "This machine"
+msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: keyboard.pm:183
#, c-format
-msgid ""
-"DOS drive letter: %s (just a guess)\n"
-""
+msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../lang.pm:1
+#: keyboard.pm:184
#, c-format
-msgid "Bahrain"
+msgid "Greek"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: keyboard.pm:185
#, c-format
-msgid "Select the files or directories and click on 'OK'"
+msgid "Greek (polytonic)"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: keyboard.pm:186
#, c-format
-msgid "omit scsi modules"
+msgid "Gujarati"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: keyboard.pm:187
#, c-format
-msgid "family of the cpu (eg: 6 for i686 class)"
+msgid "Gurmukhi"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: keyboard.pm:188
#, c-format
-msgid ""
-"Because you are doing a network installation, your network is already configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.\n"
-""
+msgid "Hungarian"
msgstr ""
-#: ../../security/l10n.pm:1
+#: keyboard.pm:189
#, c-format
-msgid "Run the daily security checks"
+msgid "Croatian"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: keyboard.pm:190
#, c-format
-msgid ""
-"Keyboard layout: %s\n"
-""
+msgid "Irish"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:191
#, c-format
-msgid "Here you can choose whether the printers connected to this machine should be accessable by remote machines and by which remote machines."
+msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm:1
+#: keyboard.pm:192
#, c-format
-msgid "Maltese (US)"
+msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../services.pm:1
+#: keyboard.pm:193
#, c-format
-msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+msgid "Iranian"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: keyboard.pm:194
#, c-format
-msgid ""
-"The creation of the boot floppy has been successfully completed \n"
-""
+msgid "Icelandic"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: keyboard.pm:195
#, c-format
-msgid "Tvcard"
+msgid "Italian"
msgstr ""
-#: ../../help.pm:1
+#: keyboard.pm:196
#, c-format
-msgid "Toggle between normal/expert mode"
+msgid "Inuktitut"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: keyboard.pm:197
#, c-format
-msgid "Size"
+msgid "Japanese 106 keys"
msgstr ""
-#: ../../help.pm:1
+#: keyboard.pm:198
#, c-format
-msgid "GRUB"
+msgid "Kannada"
msgstr ""
-#: ../../lang.pm:1
+#: keyboard.pm:201
#, c-format
-msgid "Greenland"
+msgid "Korean keyboard"
msgstr ""
-#: ../../mouse.pm:1
+#: keyboard.pm:202
#, c-format
-msgid "Logitech MouseMan+/FirstMouse+"
+msgid "Latin American"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: keyboard.pm:203
#, c-format
-msgid "Thursday"
+msgid "Laotian"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: keyboard.pm:204
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
+msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../standalone/drakgw:1
+#: keyboard.pm:206
#, c-format
-msgid ""
-"The setup of Internet Connection Sharing has already been done.\n"
-"It's currently enabled.\n"
-"\n"
-"What would you like to do?"
+msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: keyboard.pm:207
#, c-format
-msgid "Delete All NBIs"
+msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../help.pm:1
+#: keyboard.pm:208
#, c-format
-msgid ""
-"This dialog allows you to fine tune your bootloader:\n"
-"\n"
-" * \"%s\": there are three choices for your bootloader:\n"
-"\n"
-" * \"%s\": if you prefer grub (text menu).\n"
-"\n"
-" * \"%s\": if you prefer LILO with its text menu interface.\n"
-"\n"
-" * \"%s\": if you prefer LILO with its graphical interface.\n"
-"\n"
-" * \"%s\": in most cases, you will not change the default (\"%s\"), but if\n"
-"you prefer, the bootloader can be installed on the second hard drive\n"
-"(\"%s\"), or even on a floppy disk (\"%s\");\n"
-"\n"
-" * \"%s\": after a boot or a reboot of the computer, this is the delay\n"
-"given to the user at the console to select a boot entry other than the\n"
-"default.\n"
-"\n"
-"!! Beware that if you choose not to install a bootloader (by selecting\n"
-"\"%s\"), you must ensure that you have a way to boot your Mandrake Linux\n"
-"system! Be sure you know what you are doing before changing any of the\n"
-"options. !!\n"
-"\n"
-"Clicking the \"%s\" button in this dialog will offer advanced options which\n"
-"are normally reserved for the expert user."
+msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../security/help.pm:1
+#: keyboard.pm:209
#, c-format
-msgid "if set, send the mail report to this email address else send it to root."
+msgid "Latvian"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: keyboard.pm:210
#, c-format
-msgid "Which configuration of XFree do you want to have?"
+msgid "Malayalam"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: keyboard.pm:211
#, c-format
-msgid "More"
+msgid "Macedonian"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: keyboard.pm:212
#, c-format
-msgid "This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -scanbus' would also show you the device number."
+msgid "Myanmar (Burmese)"
msgstr ""
-#: ../../security/level.pm:1
+#: keyboard.pm:213
#, c-format
-msgid ""
-"With this security level, the use of this system as a server becomes possible.\n"
-"The security is now high enough to use the system as a server which can accept\n"
-"connections from many clients. Note: if your machine is only a client on the Internet, you should choose a lower level."
+msgid "Mongolian (cyrillic)"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: keyboard.pm:214
#, c-format
-msgid "Server Name"
+msgid "Maltese (UK)"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: keyboard.pm:215
#, c-format
-msgid "Account Password"
+msgid "Maltese (US)"
msgstr ""
-#: ../../standalone/drakhelp:1
+#: keyboard.pm:216
#, c-format
-msgid ""
-"%s cannot be displayed \n"
-". No Help entry of this type\n"
-""
+msgid "Dutch"
msgstr ""
-#: ../../any.pm:1
+#: keyboard.pm:218
#, c-format
-msgid ""
-"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard drive you boot (eg: System Commander).\n"
-"\n"
-"On which drive are you booting?"
+msgid "Oriya"
msgstr ""
-#: ../../install_interactive.pm:1
+#: keyboard.pm:219
#, c-format
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX will now resize your Windows partition. Be careful: this\n"
-"operation is dangerous. If you have not already done so, you\n"
-"first need to exit the installation, run \"chkdsk c:\" from a\n"
-"Command Prompt under Windows (beware, running graphical program\n"
-"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
-"Command Prompt!), optionally run defrag, then restart the\n"
-"installation. You should also backup your data.\n"
-"When sure, press Ok."
+msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm:1
+#: keyboard.pm:220
#, c-format
-msgid "Tajik keyboard"
+msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:221
#, c-format
-msgid ""
-"You can copy the printer configuration which you have done for the spooler %s to %s, your current spooler. All the configuration data (printer name, description, location, connection type, and default option settings) is overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
-""
+msgid "Portuguese"
msgstr ""
-#: ../../standalone/drakfont:1
+#: keyboard.pm:222
#, c-format
-msgid "Font List"
+msgid "Canadian (Quebec)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: keyboard.pm:224
#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
+msgid "Romanian (qwertz)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: keyboard.pm:225
#, c-format
-msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX or some other means to boot your machine"
+msgid "Romanian (qwerty)"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: keyboard.pm:227
#, c-format
-msgid ""
-"RTS/CTS adds a handshake before each packet transmission to make sure that the\n"
-"channel is clear. This adds overhead, but increase performance in case of hidden\n"
-"nodes or large number of active nodes. This parameters set the size of the\n"
-"smallest packet for which the node sends RTS, a value equal to the maximum\n"
-"packet size disable the scheme. You may also set this parameter to auto, fixed\n"
-"or off."
+msgid "Russian (Phonetic)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: keyboard.pm:228
#, c-format
-msgid "Select file"
+msgid "Saami (norwegian)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:229
#, c-format
-msgid "Choose the network or host on which the local printers should be made available:"
+msgid "Saami (swedish/finnish)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:231
#, c-format
-msgid ""
-"These commands you can also use in the \"Printing command\" field of the printing dialogs of many applications, but here do not supply the file name because the file to print is provided by the application.\n"
-""
+msgid "Slovenian"
msgstr ""
-#: ../../lang.pm:1
+#: keyboard.pm:232
#, c-format
-msgid "Japan"
+msgid "Slovakian (QWERTZ)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:233
#, c-format
-msgid "Print option list"
+msgid "Slovakian (QWERTY)"
msgstr ""
-#: ../../standalone/localedrake:1
+#: keyboard.pm:235
#, c-format
-msgid "The change is done, but to be effective you must logout"
+msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: keyboard.pm:236
#, c-format
-msgid "Country / Region"
+msgid "Syriac"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: keyboard.pm:237
#, c-format
-msgid "Search servers"
+msgid "Syriac (phonetic)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: keyboard.pm:238
#, c-format
-msgid "NCP queue name missing!"
+msgid "Telugu"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: keyboard.pm:240
#, c-format
-msgid "Warning, another internet connection has been detected, maybe using your network"
+msgid "Tamil (ISCII-layout)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: keyboard.pm:241
#, c-format
-msgid "Cd-Rom labeled \"%s\""
+msgid "Tamil (Typewriter-layout)"
msgstr ""
-#: ../../services.pm:1
+#: keyboard.pm:242
#, c-format
-msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+msgid "Thai keyboard"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: keyboard.pm:244
#, c-format
-msgid "CDRW media"
+msgid "Tajik keyboard"
msgstr ""
-#: ../../standalone/drakups:1
+#: keyboard.pm:245
#, c-format
-msgid "No new UPS devices was found"
+msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../advertising/07-server.pl:1
+#: keyboard.pm:246
#, c-format
-msgid "Turn your computer into a reliable server"
+msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../security/l10n.pm:1
+#: keyboard.pm:248
#, c-format
-msgid "Check empty password in /etc/shadow"
+msgid "Ukrainian"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: keyboard.pm:251
#, c-format
-msgid " (driver %s)"
+msgid "US keyboard (international)"
msgstr ""
-#: ../../services.pm:1
+#: keyboard.pm:252
#, c-format
-msgid "Start when requested"
+msgid "Uzbek (cyrillic)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: keyboard.pm:253
#, c-format
-msgid ""
-"Loopback file(s):\n"
-" %s\n"
-""
+msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../network/isdn.pm:1
+#: keyboard.pm:254
#, c-format
-msgid "I don't know"
+msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../printer/main.pm:1
+#: keyboard.pm:261
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
+msgid "Right Alt key"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: keyboard.pm:262
#, c-format
-msgid ""
-"You are about to configure an Auto Install floppy. This feature is somewhat dangerous and must be used circumspectly.\n"
-"\n"
-"With that feature, you will be able to replay the installation you've performed on this computer, being interactively prompted for some steps, in order to change their values.\n"
-"\n"
-"For maximum safety, the partitioning and formatting will never be performed automatically, whatever you chose during the install of this computer.\n"
-"\n"
-"Do you want to continue?"
+msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm:1
+#: keyboard.pm:263
#, c-format
-msgid "Telugu"
+msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: keyboard.pm:264
#, c-format
-msgid ""
-"\n"
-"\n"
-"Your card currently use the %s\"%s\" driver (default driver for your card is \"%s\")"
+msgid "CapsLock key"
msgstr ""
-#: ../../standalone/drakfont:1
+#: keyboard.pm:265
#, c-format
-msgid "Post Uninstall"
+msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
+#: keyboard.pm:266
#, c-format
-msgid "Connecting to Internet "
+msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: keyboard.pm:267
#, c-format
-msgid " ("
+msgid "\"Menu\" key"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: keyboard.pm:268
#, c-format
-msgid "Cpuid level"
+msgid "Left \"Windows\" key"
msgstr ""
-#: ../../printer/main.pm:1
+#: keyboard.pm:269
#, c-format
-msgid "Novell server \"%s\", printer \"%s\""
+msgid "Right \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm:1
+#: keyboard.pm:270
#, c-format
-msgid "Mongolian (cyrillic)"
+msgid "Both Control keys simultaneously"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: keyboard.pm:271
#, c-format
-msgid "Add a module"
+msgid "Both Alt keys simultaneously"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: keyboard.pm:272
#, c-format
-msgid "Local measure"
+msgid "Left Shift key"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: keyboard.pm:273
#, c-format
-msgid "Warning : IP address %s is usually reserved !"
+msgid "Right Shift key"
msgstr ""
-#: ../../mouse.pm:1
+#: keyboard.pm:274
#, c-format
-msgid "busmouse"
+msgid "Left Alt key"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: keyboard.pm:275
#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \tTo boot a kernel via etherboot, a special kernel/initrd image must be created.\n"
-" \tmkinitrd-net does much of this work and drakTermServ is just a graphical \n"
-" \tinterface to help manage/customize these images. To create the file \n"
-" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an include in \n"
-" \tdhcpd.conf, you should create the etherboot images for at least one full kernel."
+msgid "Left Control key"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: keyboard.pm:276
#, c-format
-msgid "Account Login (user name)"
+msgid "Right Control key"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: keyboard.pm:307
#, c-format
-msgid "Fdiv bug"
+msgid ""
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: keyboard.pm:312
#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"This setting will be activated after the installation.\n"
+"During installation, you will need to use the Right Control\n"
+"key to switch between the different keyboard layouts."
msgstr ""
-#: ../../security/l10n.pm:1
+#: lang.pm:142
#, c-format
-msgid "Accept broadcasted icmp echo"
+msgid "default:LTR"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:158
#, c-format
-msgid "Uruguay"
+msgid "Afghanistan"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:159
#, c-format
-msgid "Benin"
+msgid "Andorra"
msgstr ""
-#: ../../printer/main.pm:1
+#: lang.pm:160
#, c-format
-msgid "SMB/Windows server \"%s\", share \"%s\""
+msgid "United Arab Emirates"
msgstr ""
-#: ../../standalone/drakperm:1
+#: lang.pm:161
#, c-format
-msgid "Path selection"
+msgid "Antigua and Barbuda"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: lang.pm:162
#, c-format
-msgid "Name/IP address of host:"
+msgid "Anguilla"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: lang.pm:163
#, c-format
-msgid ""
-"Monitor: %s\n"
-""
+msgid "Albania"
msgstr ""
-#: ../../standalone/drakperm:1
+#: lang.pm:164
#, c-format
-msgid "Custom & system settings"
+msgid "Armenia"
msgstr ""
-#: ../../partition_table/raw.pm:1
+#: lang.pm:165
#, c-format
-msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted data."
+msgid "Netherlands Antilles"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:166
#, c-format
-msgid "Printer host name or IP missing!"
+msgid "Angola"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:167
#, c-format
-msgid "Please check all users that you want to include in your backup."
+msgid "Antarctica"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: lang.pm:168 standalone/drakxtv:51
#, c-format
-msgid ""
-"The %s must be configured by printerdrake.\n"
-"You can launch printerdrake from the Mandrake Control Center in Hardware section."
+msgid "Argentina"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: lang.pm:169
#, c-format
-msgid "Key isn't writable"
+msgid "American Samoa"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:171 standalone/drakxtv:49
#, c-format
-msgid "Bangladesh"
+msgid "Australia"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: lang.pm:172
#, c-format
-msgid "Japan (cable)"
+msgid "Aruba"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
+#: lang.pm:173
#, c-format
-msgid "Initial tests"
+msgid "Azerbaijan"
msgstr ""
-#: ../../network/isdn.pm:1
+#: lang.pm:174
#, c-format
-msgid "Continue"
+msgid "Bosnia and Herzegovina"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:175
#, c-format
-msgid "Custom Restore"
+msgid "Barbados"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:176
#, c-format
-msgid "Saturday"
+msgid "Bangladesh"
msgstr ""
-#: ../../help.pm:1
+#: lang.pm:178
#, c-format
-msgid ""
-"\"%s\": if a sound card is detected on your system, it is displayed here.\n"
-"If you notice the sound card displayed is not the one that is actually\n"
-"present on your system, you can click on the button and choose another\n"
-"driver."
+msgid "Burkina Faso"
msgstr ""
-#: ../../security/help.pm:1
+#: lang.pm:179
#, c-format
-msgid "Set the root umask."
+msgid "Bulgaria"
msgstr ""
-#: ../../install_any.pm:1 ../../partition_table.pm:1
+#: lang.pm:180
#, c-format
-msgid "Error reading file %s"
+msgid "Bahrain"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: lang.pm:181
#, c-format
-msgid "Script-based"
+msgid "Burundi"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: lang.pm:182
#, c-format
-msgid "PLL setting:"
+msgid "Benin"
msgstr ""
-#: ../../install_interactive.pm:1 ../../install_steps.pm:1
+#: lang.pm:183
#, c-format
-msgid "You must have a FAT partition mounted in /boot/efi"
+msgid "Bermuda"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:184
#, c-format
-msgid " on "
+msgid "Brunei Darussalam"
msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: lang.pm:185
#, c-format
-msgid "The URL must begin with http:// or https://"
+msgid "Bolivia"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:186
#, c-format
-msgid "You can specify directly the URI to access the printer. The URI must fulfill either the CUPS or the Foomatic specifications. Note that not all URI types are supported by all the spoolers."
+msgid "Brazil"
msgstr ""
-#: ../../any.pm:1
+#: lang.pm:187
#, c-format
-msgid "Other OS (SunOS...)"
+msgid "Bahamas"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: lang.pm:188
#, c-format
-msgid "Install/Upgrade"
+msgid "Bhutan"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: lang.pm:189
#, c-format
-msgid "%d packages"
+msgid "Bouvet Island"
msgstr ""
-#: ../../crypto.pm:1 ../../lang.pm:1
+#: lang.pm:190
#, c-format
-msgid "Costa Rica"
+msgid "Botswana"
msgstr ""
-#: ../../standalone.pm:1
+#: lang.pm:191
#, c-format
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version number.\n"
-""
+msgid "Belarus"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: lang.pm:192
#, c-format
-msgid "Domain Authentication Required"
+msgid "Belize"
msgstr ""
-#: ../../security/level.pm:1
+#: lang.pm:193
#, c-format
-msgid "Use libsafe for servers"
+msgid "Canada"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:194
#, c-format
-msgid "Icelandic"
+msgid "Cocos (Keeling) Islands"
msgstr ""
-#: ../../standalone.pm:1
+#: lang.pm:195
#, c-format
-msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] [-v|--version] "
+msgid "Congo (Kinshasa)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:196
#, c-format
-msgid ""
-"Maximum size\n"
-" allowed for Drakbackup (MB)"
+msgid "Central African Republic"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: lang.pm:197
#, c-format
-msgid "Ad-hoc"
+msgid "Congo (Brazzaville)"
msgstr ""
-#: ../../loopback.pm:1
+#: lang.pm:198
#, c-format
-msgid ""
-"Circular mounts %s\n"
-""
+msgid "Switzerland"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: lang.pm:199
#, c-format
-msgid ""
-"Connection\n"
-"time: "
+msgid "Cote d'Ivoire"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:200
#, c-format
-msgid "Martinique"
+msgid "Cook Islands"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:201
#, c-format
-msgid "HardDrive / NFS"
+msgid "Chile"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:202
#, c-format
-msgid ""
-"Old user list:\n"
-""
+msgid "Cameroon"
msgstr ""
-#: ../../wizards.pm:1
+#: lang.pm:203
#, c-format
-msgid "Installation failed"
+msgid "China"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:204
#, c-format
-msgid "Search Backups"
+msgid "Colombia"
msgstr ""
-#: ../../modules/parameters.pm:1
+#: lang.pm:206
#, c-format
-msgid "a number"
+msgid "Cuba"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: lang.pm:207
#, c-format
-msgid "Swedish"
+msgid "Cape Verde"
msgstr ""
-#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../modules/interactive.pm:1
+#: lang.pm:208
#, c-format
-msgid "Which %s driver should I try?"
+msgid "Christmas Island"
msgstr ""
-#: ../../standalone/logdrake:1
+#: lang.pm:209
#, c-format
-msgid "You will receive an alert if one of the selected services is no longer running"
+msgid "Cyprus"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:212
#, c-format
-msgid "Weekday"
+msgid "Djibouti"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: lang.pm:213
#, c-format
-msgid "Filesystem types:"
+msgid "Denmark"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:214
#, c-format
-msgid "Northern Mariana Islands"
+msgid "Dominica"
msgstr ""
-#: ../../printer/main.pm:1
+#: lang.pm:215
#, c-format
-msgid ", multi-function device on HP JetDirect"
+msgid "Dominican Republic"
msgstr ""
-#: ../../mouse.pm:1
+#: lang.pm:216
#, c-format
-msgid "none"
+msgid "Algeria"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: lang.pm:217
#, c-format
-msgid "Managed"
+msgid "Ecuador"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: lang.pm:218
#, c-format
-msgid "Floppy"
+msgid "Estonia"
msgstr ""
-#: ../../standalone/drakfont:1
+#: lang.pm:219
#, c-format
-msgid "Ghostscript referencing"
+msgid "Egypt"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: lang.pm:220
#, c-format
-msgid "Bootloader"
+msgid "Western Sahara"
msgstr ""
-#: ../../security/l10n.pm:1
+#: lang.pm:221
#, c-format
-msgid "Authorize all services controlled by tcp_wrappers"
+msgid "Eritrea"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: lang.pm:222
#, c-format
-msgid "Move"
+msgid "Spain"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../help.pm:1
+#: lang.pm:223
#, c-format
-msgid "Bootloader to use"
+msgid "Ethiopia"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:224
#, c-format
-msgid "SMB server host"
+msgid "Finland"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: lang.pm:225
#, c-format
-msgid "Name Servers:"
+msgid "Fiji"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:226
#, c-format
-msgid "Minute"
+msgid "Falkland Islands (Malvinas)"
msgstr ""
-#: ../../install_messages.pm:1
+#: lang.pm:227
#, c-format
-msgid ""
-"\n"
-"Warning\n"
-"\n"
-"Please read carefully the terms below. If you disagree with any\n"
-"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
-"to continue the installation without using these media.\n"
-"\n"
-"\n"
-"Some components contained in the next CD media are not governed\n"
-"by the GPL License or similar agreements. Each such component is then\n"
-"governed by the terms and conditions of its own specific license. \n"
-"Please read carefully and comply with such specific licenses before \n"
-"you use or redistribute the said components. \n"
-"Such licenses will in general prevent the transfer, duplication \n"
-"(except for backup purposes), redistribution, reverse engineering, \n"
-"de-assembly, de-compilation or modification of the component. \n"
-"Any breach of agreement will immediately terminate your rights under \n"
-"the specific license. Unless the specific license terms grant you such\n"
-"rights, you usually cannot install the programs on more than one\n"
-"system, or adapt it to be used on a network. In doubt, please contact \n"
-"directly the distributor or editor of the component. \n"
-"Transfer to third parties or copying of such components including the \n"
-"documentation is usually forbidden.\n"
-"\n"
-"\n"
-"All rights to the components of the next CD media belong to their \n"
-"respective authors and are protected by intellectual property and \n"
-"copyright laws applicable to software programs.\n"
-""
+msgid "Micronesia"
msgstr ""
-#: ../../services.pm:1
+#: lang.pm:228
#, c-format
-msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+msgid "Faroe Islands"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: lang.pm:230
#, c-format
-msgid "/_Expert mode"
+msgid "Gabon"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: lang.pm:231 network/netconnect.pm:60 network/netconnect.pm:285
#, c-format
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgid "United Kingdom"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:232
#, c-format
-msgid "Micronesia"
+msgid "Grenada"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: lang.pm:233
#, c-format
-msgid "4 billion colors (32 bits)"
+msgid "Georgia"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: lang.pm:234
#, c-format
-msgid "Operating Mode"
+msgid "French Guiana"
msgstr ""
-#: ../../steps.pm:1
+#: lang.pm:235
#, c-format
-msgid "License"
+msgid "Ghana"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:236
#, c-format
-msgid "This may take a moment to generate the keys."
+msgid "Gibraltar"
msgstr ""
-#: ../../standalone/draksec:1
+#: lang.pm:237
#, c-format
-msgid ""
-"Here, you can setup the security level and administrator of your machine.\n"
-"\n"
-"\n"
-"The Security Administrator is the one who will receive security alerts if the\n"
-"'Security Alerts' option is set. It can be a username or an email.\n"
-"\n"
-"\n"
-"The Security Level menu allows you to select one of the six preconfigured security levels\n"
-"provided with msec. These levels range from poor security and ease of use, to\n"
-"paranoid config, suitable for very sensitive server applications:\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but very\n"
-"easy to use security level. It should only be used for machines not connected to\n"
-"any network and that are not accessible to everybody.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Standard</span>: This is the standard security\n"
-"recommended for a computer that will be used to connect to the Internet as a\n"
-"client.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">High</span>: There are already some\n"
-"restrictions, and more automatic checks are run every night.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Higher</span>: The security is now high enough\n"
-"to use the system as a server which can accept connections from many clients. If\n"
-"your machine is only a client on the Internet, you should choose a lower level.\n"
-"\n"
-"\n"
-"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the previous\n"
-"level, but the system is entirely closed and security features are at their\n"
-"maximum"
+msgid "Greenland"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:238
#, c-format
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgid "Gambia"
msgstr ""
-#: ../../network/adsl.pm:1
+#: lang.pm:239
#, c-format
-msgid "Sagem (using pppoa) usb"
+msgid "Guinea"
msgstr ""
-#: ../../install_any.pm:1
+#: lang.pm:240
#, c-format
-msgid "An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"
+msgid "Guadeloupe"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:241
#, c-format
-msgid "Starting the printing system at boot time"
+msgid "Equatorial Guinea"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: lang.pm:243
#, c-format
-msgid "Do you want to start the connection at boot?"
+msgid "South Georgia and the South Sandwich Islands"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:244
#, c-format
-msgid "Processor ID"
+msgid "Guatemala"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: lang.pm:245
#, c-format
-msgid "Sound trouble shooting"
+msgid "Guam"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:246
#, c-format
-msgid "Polish (qwerty layout)"
+msgid "Guinea-Bissau"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: lang.pm:247
#, c-format
-msgid "/_Add Printer"
+msgid "Guyana"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:248
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
-""
+msgid "China (Hong Kong)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:249
#, c-format
-msgid ""
-"You are about to install the printing system %s on a system running in the %s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for print jobs and handles them. This daemon is also accessable by remote machines through the network and so it is a possible point for attacks. Therefore only a few selected daemons are started by default in this security level.\n"
-"\n"
-"Do you really want to configure printing on this machine?"
+msgid "Heard and McDonald Islands"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: lang.pm:250
#, c-format
-msgid "Host \"%s\", port %s"
+msgid "Honduras"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: lang.pm:251
#, c-format
-msgid "This partition can't be used for loopback"
+msgid "Croatia"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: lang.pm:252
#, c-format
-msgid "File already exists. Use it?"
+msgid "Haiti"
msgstr ""
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
+#: lang.pm:253
#, c-format
-msgid "received: "
+msgid "Hungary"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:254
#, c-format
-msgid "Right Alt key"
+msgid "Indonesia"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:255 standalone/drakxtv:48
#, c-format
-msgid "the list of alternative drivers for this sound card"
+msgid "Ireland"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: lang.pm:256
#, c-format
-msgid "Gateway"
+msgid "Israel"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:257
#, c-format
-msgid "Tonga"
+msgid "India"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:258
#, c-format
-msgid "Tunisia"
+msgid "British Indian Ocean Territory"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: lang.pm:259
#, c-format
-msgid "Scanner sharing"
+msgid "Iraq"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:260
#, c-format
-msgid "Click on a device in the left tree in order to display its information here."
+msgid "Iran"
msgstr ""
-#: ../../standalone/drakups:1
+#: lang.pm:261
#, c-format
-msgid ""
-"We are configuring the \"%s\" UPS from \"%s\".\n"
-"Please fill in its name, its driver and its port."
+msgid "Iceland"
msgstr ""
-#: ../../security/help.pm:1
+#: lang.pm:263
#, c-format
-msgid "Allow/Forbid autologin."
+msgid "Jamaica"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: lang.pm:264
#, c-format
-msgid "XawTV isn't installed!"
+msgid "Jordan"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:265
#, c-format
-msgid "Do not include critical files (passwd, group, fstab)"
+msgid "Japan"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:266
#, c-format
-msgid "old static device name used in dev package"
+msgid "Kenya"
msgstr ""
-#: ../../security/l10n.pm:1
+#: lang.pm:267
#, c-format
-msgid "Enable the logging of IPv4 strange packets"
+msgid "Kyrgyzstan"
msgstr ""
-#: ../../any.pm:1
+#: lang.pm:268
#, c-format
-msgid "This label is already used"
+msgid "Cambodia"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:269
#, c-format
-msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected. Also your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network printers when you don't need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
+msgid "Kiribati"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:270
#, c-format
-msgid "Greek (polytonic)"
+msgid "Comoros"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: lang.pm:271
#, c-format
-msgid "After formatting partition %s, all data on this partition will be lost"
+msgid "Saint Kitts and Nevis"
msgstr ""
-#: ../../standalone/livedrake:1
+#: lang.pm:272
#, c-format
-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."
+msgid "Korea (North)"
msgstr ""
-#: ../../standalone/drakperm:1
+#: lang.pm:273
#, c-format
-msgid "Use group id for execution"
+msgid "Korea"
msgstr ""
-#: ../../any.pm:1
+#: lang.pm:274
#, c-format
-msgid "Choose the default user:"
+msgid "Kuwait"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:275
#, c-format
-msgid "Gabon"
+msgid "Cayman Islands"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:276
#, c-format
-msgid ""
-"\n"
-"Printers on remote CUPS servers do not need to be configured here; these printers will be automatically detected."
+msgid "Kazakhstan"
msgstr ""
-#: ../../any.pm:1
+#: lang.pm:277
#, c-format
-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."
+msgid "Laos"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:278
#, c-format
-msgid "Directory (or module) to put the backup on this host."
+msgid "Lebanon"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: lang.pm:279
#, c-format
-msgid "Domain"
+msgid "Saint Lucia"
msgstr ""
-#: ../../any.pm:1
+#: lang.pm:280
#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
+msgid "Liechtenstein"
msgstr ""
-#: ../../help.pm:1
+#: lang.pm:281
#, c-format
-msgid ""
-"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
-"automated. DrakX will analyze the disk boot sector and act according to\n"
-"what it finds there:\n"
-"\n"
-" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
-"boot sector. This way you will be able to load either GNU/Linux or another\n"
-"OS.\n"
-"\n"
-" * if a grub or LILO boot sector is found, it will replace it with a new\n"
-"one.\n"
-"\n"
-"If it cannot make a determination, DrakX will ask you where to place the\n"
-"bootloader."
+msgid "Sri Lanka"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: lang.pm:282
#, c-format
-msgid "Provider dns 2 (optional)"
+msgid "Liberia"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../help.pm:1
+#: lang.pm:283
#, c-format
-msgid "Boot device"
+msgid "Lesotho"
msgstr ""
-#: ../../standalone/drakups:1
+#: lang.pm:284
#, c-format
-msgid "ACL name"
+msgid "Lithuania"
msgstr ""
-#: ../../install_interactive.pm:1
+#: lang.pm:285
#, c-format
-msgid "Which partition do you want to resize?"
+msgid "Luxembourg"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:286
#, c-format
-msgid "United States Minor Outlying Islands"
+msgid "Latvia"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:287
#, c-format
-msgid "Djibouti"
+msgid "Libya"
msgstr ""
-#: ../../standalone/logdrake:1
+#: lang.pm:288
#, c-format
-msgid "A tool to monitor your logs"
+msgid "Morocco"
msgstr ""
-#: ../../printer/data.pm:1
+#: lang.pm:289
#, c-format
-msgid "LPD"
+msgid "Monaco"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: lang.pm:290
#, c-format
-msgid ""
-"Graphics card: %s\n"
-""
+msgid "Moldova"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: lang.pm:291
#, c-format
-msgid "/Set as _Default"
+msgid "Madagascar"
msgstr ""
-#: ../../security/l10n.pm:1
+#: lang.pm:292
#, c-format
-msgid "Accept icmp echo"
+msgid "Marshall Islands"
msgstr ""
-#: ../../bootloader.pm:1
+#: lang.pm:293
#, c-format
-msgid "Yaboot"
+msgid "Macedonia"
msgstr ""
-#: ../../mouse.pm:1
+#: lang.pm:294
#, c-format
-msgid "Logitech CC Series with Wheel emulation"
+msgid "Mali"
msgstr ""
-#: ../../partition_table.pm:1
+#: lang.pm:295
#, c-format
-msgid "Extended partition not supported on this platform"
+msgid "Myanmar"
msgstr ""
-#: ../../standalone/drakboot:1
+#: lang.pm:296
#, c-format
-msgid "Splash selection"
+msgid "Mongolia"
msgstr ""
-#: ../../network/isdn.pm:1 ../../network/isdn.pm:1 ../../network/isdn.pm:1 ../../network/isdn.pm:1 ../../network/isdn.pm:1 ../../network/isdn.pm:1 ../../network/netconnect.pm:1
+#: lang.pm:297
#, c-format
-msgid "ISDN Configuration"
+msgid "Northern Mariana Islands"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:298
#, c-format
-msgid "high"
+msgid "Martinique"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakgw:1
+#: lang.pm:299
#, c-format
-msgid "Internet Connection Sharing"
+msgid "Mauritania"
msgstr ""
-#: ../../standalone/logdrake:1
+#: lang.pm:300
#, c-format
-msgid "Choose file"
+msgid "Montserrat"
msgstr ""
-#: ../../standalone/drakbug:1
+#: lang.pm:301
#, c-format
-msgid "Summary: "
+msgid "Malta"
msgstr ""
-#: ../../network/shorewall.pm:1
+#: lang.pm:302
#, c-format
-msgid "Warning! An existing firewalling configuration has been detected. You may need some manual fixes after installation."
+msgid "Mauritius"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:303
#, c-format
-msgid "Printing/Photo Card Access on \"%s\""
+msgid "Maldives"
msgstr ""
-#: ../../security/l10n.pm:1
+#: lang.pm:304
#, c-format
-msgid "Daily security check"
+msgid "Malawi"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:305
#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above or on printers in the local network?\n"
-""
+msgid "Mexico"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:306
#, c-format
-msgid "Printer default settings"
+msgid "Malaysia"
msgstr ""
-#: ../../mouse.pm:1
+#: lang.pm:307
#, c-format
-msgid "Generic PS2 Wheel Mouse"
+msgid "Mozambique"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:308
#, c-format
-msgid "the WP flag in the CR0 register of the cpu enforce write proctection at the memory page level, thus enabling the processor to prevent unchecked kernel accesses to user memory (aka this is a bug guard)"
+msgid "Namibia"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:309
#, c-format
-msgid "Removing old printer \"%s\"..."
+msgid "New Caledonia"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:310
#, c-format
-msgid "Select a device !"
+msgid "Niger"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:311
#, c-format
-msgid "Remove selected server"
+msgid "Norfolk Island"
msgstr ""
-#: ../../network/adsl.pm:1
+#: lang.pm:312
#, c-format
-msgid "Sagem (using dhcp) usb"
+msgid "Nigeria"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:313
#, c-format
-msgid "French Southern Territories"
+msgid "Nicaragua"
msgstr ""
-#: ../../standalone/drakups:1
+#: lang.pm:316
#, c-format
-msgid "Add an UPS device"
+msgid "Nepal"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:317
#, c-format
-msgid "the vendor name of the processor"
+msgid "Nauru"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: lang.pm:318
#, c-format
-msgid ""
-" - Maintain %s:\n"
-" \tFor users to be able to log into the system from a diskless client, their entry in\n"
-" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
-" \thelps in this respect by adding or removing system users from this file."
+msgid "Niue"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: lang.pm:319
#, c-format
-msgid "All data on this partition should be backed-up"
+msgid "New Zealand"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: lang.pm:320
#, c-format
-msgid "Installing package %s"
+msgid "Oman"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: lang.pm:321
#, c-format
-msgid "Checking device and configuring HPOJ..."
+msgid "Panama"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: lang.pm:322
#, c-format
-msgid "To have more partitions, please delete one to be able to create an extended partition"
+msgid "Peru"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:323
#, c-format
-msgid "Your printer was configured automatically to give you access to the photo card drives from your PC. Now you can access your photo cards using the graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> \"MTools File Manager\") or the command line utilities \"mtools\" (enter \"man mtools\" on the command line for more info). You find the card's file system under the drive letter \"p:\", or subsequent drive letters when you have more than one HP printer with photo card drives. In \"MtoolsFM\" you can switch between drive letters with the field at the upper-right corners of the file lists."
+msgid "French Polynesia"
msgstr ""
-#: ../../steps.pm:1
+#: lang.pm:324
#, c-format
-msgid "Choose packages to install"
+msgid "Papua New Guinea"
msgstr ""
-#: ../../install_interactive.pm:1
+#: lang.pm:325
#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
+msgid "Philippines"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: lang.pm:326
#, c-format
-msgid "Your system does not have enough space left for installation or upgrade (%d > %d)"
+msgid "Pakistan"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:327
#, c-format
-msgid "Every printer needs a name (for example \"printer\"). The Description and Location fields do not need to be filled in. They are comments for the users."
+msgid "Poland"
msgstr ""
-#: ../../help.pm:1
+#: lang.pm:328
#, c-format
-msgid ""
-"\"%s\": clicking on the \"%s\" button will open the printer configuration\n"
-"wizard. Consult the corresponding chapter of the ``Starter Guide'' for more\n"
-"information on how to setup a new printer. The interface presented there is\n"
-"similar to the one used during installation."
+msgid "Saint Pierre and Miquelon"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:329
#, c-format
-msgid "Bhutan"
+msgid "Pitcairn"
msgstr ""
-#: ../../standalone/drakgw:1
+#: lang.pm:330
#, c-format
-msgid "Network interface"
+msgid "Puerto Rico"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: lang.pm:331
#, c-format
-msgid "Disconnection from Internet failed."
+msgid "Palestine"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: lang.pm:332
#, c-format
-msgid "Reading printer data..."
+msgid "Portugal"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:333
#, c-format
-msgid "Korean keyboard"
+msgid "Paraguay"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: lang.pm:334
#, c-format
-msgid "Not connected"
+msgid "Palau"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: lang.pm:335
#, c-format
-msgid "No internet connection configured"
+msgid "Qatar"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:336
#, c-format
-msgid "Greek"
+msgid "Reunion"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:337
#, c-format
-msgid "Saint Kitts and Nevis"
+msgid "Romania"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#: lang.pm:338
#, c-format
-msgid "Generic 3 Button Mouse with Wheel emulation"
+msgid "Russia"
msgstr ""
-#: ../../any.pm:1
+#: lang.pm:339
#, c-format
-msgid "Enable OF Boot?"
+msgid "Rwanda"
msgstr ""
-#: ../../fsedit.pm:1
+#: lang.pm:340
#, c-format
-msgid "You can't use JFS for partitions smaller than 16MB"
+msgid "Saudi Arabia"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:341
#, c-format
-msgid "Erase your RW media (1st Session)"
+msgid "Solomon Islands"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: lang.pm:342
#, c-format
-msgid ""
-"Monitor VertRefresh: %s\n"
-""
+msgid "Seychelles"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: lang.pm:343
#, c-format
-msgid "Mount point"
+msgid "Sudan"
msgstr ""
-#: ../../Xconfig/test.pm:1
+#: lang.pm:345
#, c-format
-msgid ""
-"An error occurred:\n"
-"%s\n"
-"Try to change some parameters"
+msgid "Singapore"
msgstr ""
-#: ../../printer/main.pm:1
+#: lang.pm:346
#, c-format
-msgid "TCP/IP host \"%s\", port %s"
+msgid "Saint Helena"
msgstr ""
-#: ../../standalone/drakperm:1
+#: lang.pm:347
#, c-format
-msgid "User :"
+msgid "Slovenia"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:348
#, c-format
-msgid "Restore system"
+msgid "Svalbard and Jan Mayen Islands"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: lang.pm:349
#, c-format
-msgid "Select the network interface to configure:"
+msgid "Slovakia"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: lang.pm:350
#, c-format
-msgid "These are the machines on which the locally connected scanner(s) should be available:"
+msgid "Sierra Leone"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: lang.pm:351
#, c-format
-msgid "The DHCP end ip"
+msgid "San Marino"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: lang.pm:352
#, c-format
-msgid "Another one"
+msgid "Senegal"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: lang.pm:353
#, c-format
-msgid "Drakbackup"
+msgid "Somalia"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:354
#, c-format
-msgid "Colombia"
+msgid "Suriname"
msgstr ""
-#: ../../standalone/drakgw:1
+#: lang.pm:355
#, c-format
-msgid ""
-"Current configuration of `%s':\n"
-"\n"
-"Network: %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+msgid "Sao Tome and Principe"
msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: lang.pm:356
#, c-format
-msgid "Plug'n Play"
+msgid "El Salvador"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:357
#, c-format
-msgid "Reunion"
+msgid "Syria"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: lang.pm:358
#, c-format
-msgid "Details"
+msgid "Swaziland"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: lang.pm:359
#, c-format
-msgid "For security reasons, it will be disconnected now."
+msgid "Turks and Caicos Islands"
msgstr ""
-#: ../../standalone/drakbug:1
+#: lang.pm:360
#, c-format
-msgid "Synchronization tool"
+msgid "Chad"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:361
#, c-format
-msgid "Checking your system..."
+msgid "French Southern Territories"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:362
#, c-format
-msgid "Print"
+msgid "Togo"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:363
#, c-format
-msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+msgid "Thailand"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:364
#, c-format
-msgid "Mongolia"
+msgid "Tajikistan"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: lang.pm:365
#, c-format
-msgid ""
-"Mounted\n"
-""
+msgid "Tokelau"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: lang.pm:366
#, c-format
-msgid "Configure CUPS"
+msgid "East Timor"
msgstr ""
-#: ../../help.pm:1
+#: lang.pm:367
#, c-format
-msgid "Graphical Interface"
+msgid "Turkmenistan"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: lang.pm:368
#, c-format
-msgid "Restore Users"
+msgid "Tunisia"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: lang.pm:369
#, c-format
-msgid "Bitrate (in b/s)"
+msgid "Tonga"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: lang.pm:370
#, c-format
-msgid "Encryption key for %s"
+msgid "Turkey"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: lang.pm:371
#, c-format
-msgid "Do you want to recover your system?"
+msgid "Trinidad and Tobago"
msgstr ""
-#: ../../services.pm:1
+#: lang.pm:372
#, c-format
-msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
+msgid "Tuvalu"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: lang.pm:373
#, c-format
-msgid "Detected hardware"
+msgid "Taiwan"
msgstr ""
-#: ../../standalone/drakups:1
+#: lang.pm:374
#, c-format
-msgid "Connected through a serial port or an usb cable"
+msgid "Tanzania"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:375
#, c-format
-msgid "Mauritius"
+msgid "Ukraine"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:376
#, c-format
-msgid "Myanmar (Burmese)"
+msgid "Uganda"
msgstr ""
-#: ../../fs.pm:1
+#: lang.pm:377
#, c-format
-msgid "Enabling swap partition %s"
+msgid "United States Minor Outlying Islands"
msgstr ""
-#: ../../install_interactive.pm:1
+#: lang.pm:379
#, c-format
-msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgid "Uruguay"
msgstr ""
-#: ../../keyboard.pm:1
+#: lang.pm:380
#, c-format
-msgid "Armenian (old)"
+msgid "Uzbekistan"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: lang.pm:381
#, 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."
+msgid "Vatican"
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
+#: lang.pm:382
#, c-format
-msgid "Find the solutions of your problems via MandrakeSoft's online support platform."
+msgid "Saint Vincent and the Grenadines"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: lang.pm:383
#, c-format
-msgid ", host \"%s\", port %s"
+msgid "Venezuela"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:384
#, c-format
-msgid "Monaco"
+msgid "Virgin Islands (British)"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: lang.pm:385
#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \tThe diskless client machines need either ROM images on the NIC, or a boot floppy\n"
-" \tor CD to initate the boot sequence. drakTermServ will help generate these\n"
-" \timages, based on the NIC in the client machine.\n"
-" \t\t\n"
-" \tA basic example of creating a boot floppy for a 3Com 3c509 manually:\n"
-" \t\t\n"
-" \tcat /usr/lib/etherboot/floppyload.bin \\\n"
-" \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
-" \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
+msgid "Virgin Islands (U.S.)"
msgstr ""
-#: ../../install_interactive.pm:1
+#: lang.pm:386
#, c-format
-msgid "Partitioning failed: %s"
+msgid "Vietnam"
msgstr ""
-#: ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../fs.pm:1 ../../swap.pm:1
+#: lang.pm:387
#, c-format
-msgid "%s formatting of %s failed"
+msgid "Vanuatu"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: lang.pm:388
#, c-format
-msgid "Canada (cable)"
+msgid "Wallis and Futuna"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: lang.pm:389
#, c-format
-msgid "Floppy creation completed"
+msgid "Samoa"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1
+#: lang.pm:390
#, c-format
-msgid "Upgrade"
+msgid "Yemen"
msgstr ""
-#: ../../help.pm:1
+#: lang.pm:391
#, c-format
-msgid "Workstation"
+msgid "Mayotte"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: lang.pm:392
#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
+msgid "Serbia"
msgstr ""
-#: ../../lang.pm:1
+#: lang.pm:393 standalone/drakxtv:50
#, c-format
-msgid "Kyrgyzstan"
+msgid "South Africa"
msgstr ""
-#: ../../printer/main.pm:1
+#: lang.pm:394
#, c-format
-msgid "Multi-function device on USB"
+msgid "Zambia"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: lang.pm:395
#, c-format
-msgid ""
-"We didn't detect any USB key on your system. If you\n"
-"plug in an USB key now, Mandrake Move will have the ability\n"
-"to transparently save the data in your home directory and\n"
-"system wide configuration, for next boot on this computer\n"
-"or another one. Note: if you plug in a key now, wait several\n"
-"seconds before detecting again.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandrake Move as a normal live Mandrake\n"
-"Operating System."
+msgid "Zimbabwe"
msgstr ""
-#: ../../help.pm:1
+#: lang.pm:965
#, c-format
-msgid "With basic documentation"
+msgid "Welcome to %s"
msgstr ""
-#: ../../services.pm:1
+#: loopback.pm:32
#, c-format
-msgid "Anacron is a periodic command scheduler."
+msgid ""
+"Circular mounts %s\n"
+""
msgstr ""
-#: ../../install_interactive.pm:1
+#: lvm.pm:109
#, c-format
msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
+"Remove the logical volumes first\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: modules.pm:323
#, c-format
-msgid "Western Sahara"
+msgid "PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: modules/interactive.pm:20 standalone/drakconnect:782
#, c-format
-msgid "Proxy should be http://..."
+msgid "Parameters"
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: modules/interactive.pm:20 standalone/draksec:43
#, c-format
-msgid "South Africa"
+msgid "NONE"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: modules/interactive.pm:21
#, c-format
-msgid "Eject tape after the backup"
+msgid "Module configuration"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: modules/interactive.pm:21
#, c-format
-msgid "Etherboot Floppy/ISO"
+msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: modules/interactive.pm:61
#, c-format
-msgid "Modify printer configuration"
+msgid "Found %s %s interfaces"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: modules/interactive.pm:62
#, c-format
-msgid "Choose a partition"
+msgid "Do you have another one?"
msgstr ""
-#: ../../standalone/drakperm:1
+#: modules/interactive.pm:63
#, c-format
-msgid "Edit current rule"
+msgid "Do you have any %s interfaces?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: modules/interactive.pm:69
#, c-format
-msgid "%s"
+msgid "See hardware info"
msgstr ""
-#: ../../standalone/net_monitor:1
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: modules/interactive.pm:85
#, c-format
-msgid "Average"
+msgid "Installing driver for %s card %s"
msgstr ""
-#: ../../mouse.pm:1
+#: modules/interactive.pm:85
#, c-format
-msgid "Please test the mouse"
+msgid "(module %s)"
msgstr ""
-#: ../../fs.pm:1
+#: modules/interactive.pm:96
#, c-format
msgid ""
-"Do not update inode access times on this file system\n"
-"(e.g, for faster access on the news spool to speed up news servers)."
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
-#: ../../mouse.pm:1
+#: modules/interactive.pm:102
#, c-format
-msgid "3 buttons with Wheel emulation"
+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 ""
-#: ../../standalone/drakperm:1
+#: modules/interactive.pm:104
#, c-format
-msgid "Sticky-bit"
+msgid "Module options:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: modules/interactive.pm:116
#, c-format
-msgid "Other Media"
+msgid "Which %s driver should I try?"
msgstr ""
-#: ../../mouse.pm:1
+#: modules/interactive.pm:125
#, c-format
-msgid "Logitech MouseMan+"
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it should\n"
+"not cause any damage."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: modules/interactive.pm:129
#, c-format
-msgid "Backup system files"
+msgid "Autoprobe"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: modules/interactive.pm:129
#, c-format
-msgid "Sector"
+msgid "Specify options"
msgstr ""
-#: ../../lang.pm:1
+#: modules/interactive.pm:141
#, c-format
-msgid "Qatar"
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
-#: ../../any.pm:1
+#: modules/parameters.pm:46
#, c-format
-msgid "LDAP Base dn"
+msgid "a number"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: modules/parameters.pm:48
#, c-format
-msgid "You can't select this package as there is not enough space left to install it"
+msgid "%d comma separated numbers"
msgstr ""
-#: ../../help.pm:1
+#: modules/parameters.pm:48
#, c-format
-msgid "generate auto-install floppy"
+msgid "%d comma separated strings"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: modules/parameters.pm:50
#, c-format
-msgid "Dialing mode"
+msgid "comma separated numbers"
msgstr ""
-#: ../../services.pm:1
+#: modules/parameters.pm:50
#, c-format
-msgid "File sharing"
+msgid "comma separated strings"
msgstr ""
-#: ../../standalone/logdrake:1
+#: mouse.pm:25
#, c-format
-msgid "The alert wizard had unexpectly failled:"
+msgid "Sun - Mouse"
msgstr ""
-#: ../../any.pm:1
+#: mouse.pm:31 security/level.pm:12
#, c-format
-msgid "Clean /tmp at each boot"
+msgid "Standard"
msgstr ""
-#: ../../lang.pm:1
+#: mouse.pm:32
#, c-format
-msgid "Malawi"
+msgid "Logitech MouseMan+"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: mouse.pm:33
#, c-format
-msgid "local config: false"
+msgid "Generic PS2 Wheel Mouse"
msgstr ""
-#: ../../scanner.pm:1
+#: mouse.pm:34
#, c-format
-msgid "Could not set permissions of firmware file %s!"
+msgid "GlidePoint"
msgstr ""
-#: ../../standalone/drakperm:1
+#: mouse.pm:35
#, c-format
-msgid "System settings"
+msgid "Automatic"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: mouse.pm:37 mouse.pm:71
#, c-format
-msgid "Please choose your type of mouse."
+msgid "Kensington Thinking Mouse"
msgstr ""
-#: ../../services.pm:1
+#: mouse.pm:38 mouse.pm:66
#, c-format
-msgid "running"
+msgid "Genius NetMouse"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: mouse.pm:39
#, c-format
-msgid "class of hardware device"
+msgid "Genius NetScroll"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: mouse.pm:40 mouse.pm:50
#, c-format
-msgid "These are the machines and networks on which the locally connected printer(s) should be available:"
+msgid "Microsoft Explorer"
msgstr ""
-#: ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: mouse.pm:45 mouse.pm:77
#, c-format
-msgid "United Kingdom"
+msgid "1 button"
msgstr ""
-#: ../../lang.pm:1
+#: mouse.pm:46 mouse.pm:55
#, c-format
-msgid "Indonesia"
+msgid "Generic 2 Button Mouse"
msgstr ""
-#: ../../standalone/draksec:1 ../../standalone/draksec:1
+#: mouse.pm:48 mouse.pm:57
#, c-format
-msgid "default"
+msgid "Generic 3 Button Mouse with Wheel emulation"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: mouse.pm:49
#, c-format
-msgid "France [SECAM]"
+msgid "Wheel"
msgstr ""
-#: ../../any.pm:1
+#: mouse.pm:53
#, c-format
-msgid "restrict"
+msgid "serial"
msgstr ""
-#: ../../pkgs.pm:1
+#: mouse.pm:56
#, c-format
-msgid "must have"
+msgid "Generic 3 Button Mouse"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: mouse.pm:58
#, c-format
-msgid ""
-"CUPS does not support printers on Novell servers or printers sending the data into a free-formed command.\n"
-""
+msgid "Microsoft IntelliMouse"
msgstr ""
-#: ../../lang.pm:1
+#: mouse.pm:59
#, c-format
-msgid "Senegal"
+msgid "Logitech MouseMan"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: mouse.pm:60
#, c-format
-msgid "Command line"
+msgid "Logitech MouseMan with Wheel emulation"
msgstr ""
-#: ../advertising/08-store.pl:1
+#: mouse.pm:61
#, c-format
-msgid "Our full range of Linux solutions, as well as special offers on products and other \"goodies\", are available on our e-store:"
+msgid "Mouse Systems"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: mouse.pm:63
#, c-format
-msgid "March"
+msgid "Logitech CC Series"
msgstr ""
-#: ../../any.pm:1
+#: mouse.pm:64
#, c-format
-msgid "access to administrative files"
+msgid "Logitech CC Series with Wheel emulation"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: mouse.pm:65
#, c-format
-msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+msgid "Logitech MouseMan+/FirstMouse+"
msgstr ""
-#: ../../fs.pm:1
+#: mouse.pm:67
#, c-format
-msgid ""
-"Do not allow set-user-identifier or set-group-identifier\n"
-"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
-"have suidperl(1) installed.)"
+msgid "MM Series"
msgstr ""
-#: ../../lang.pm:1
+#: mouse.pm:68
#, c-format
-msgid "Montserrat"
+msgid "MM HitTablet"
msgstr ""
-#: ../../help.pm:1
+#: mouse.pm:69
#, c-format
-msgid "Automatic dependencies"
+msgid "Logitech Mouse (serial, old C7 type)"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: mouse.pm:70
#, c-format
-msgid "Swap"
+msgid "Logitech Mouse (serial, old C7 type) with Wheel emulation"
msgstr ""
-#: ../../standalone/drakperm:1
+#: mouse.pm:72
#, c-format
-msgid "Custom settings"
+msgid "Kensington Thinking Mouse with Wheel emulation"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: mouse.pm:75
#, c-format
-msgid ""
-"The USB key seems to have write protection enabled, but we can't safely\n"
-"unplug it now.\n"
-"\n"
-"\n"
-"Click the button to reboot the machine, unplug it, remove write protection,\n"
-"plug the key again, and launch Mandrake Move again."
+msgid "busmouse"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: mouse.pm:78
#, c-format
-msgid "Restore Other"
+msgid "2 buttons"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: mouse.pm:79
#, c-format
-msgid "TV card"
+msgid "3 buttons"
msgstr ""
-#: ../../printer/main.pm:1
+#: mouse.pm:80
#, c-format
-msgid "Printer on SMB/Windows 95/98/NT server"
+msgid "3 buttons with Wheel emulation"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: mouse.pm:83
#, c-format
-msgid "/_Configure CUPS"
+msgid "none"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: mouse.pm:85
#, c-format
-msgid ", "
+msgid "No mouse"
msgstr ""
-#: ../../standalone/drakbug:1
+#: mouse.pm:491
#, c-format
-msgid "Submit lspci"
+msgid "Please test the mouse"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: mouse.pm:493
#, c-format
-msgid "Remove selected host/network"
+msgid "To activate the mouse,"
msgstr ""
-#: ../../services.pm:1
+#: mouse.pm:494
#, c-format
-msgid "Postfix is a Mail Transport Agent, which is the program that moves mail from one machine to another."
+msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../keyboard.pm:1
+#: network/adsl.pm:20
#, c-format
-msgid "Uzbek (cyrillic)"
+msgid "use pppoe"
msgstr ""
-#: ../../keyboard.pm:1
+#: network/adsl.pm:21
#, c-format
-msgid ""
-"Here you can choose the key or key combination that will \n"
-"allow switching between the different keyboard layouts\n"
-"(eg: latin and non latin)"
+msgid "use pptp"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: network/adsl.pm:22
#, c-format
-msgid "Network Hotplugging"
+msgid "use dhcp"
msgstr ""
-#: ../../security/help.pm:1
+#: network/adsl.pm:23
#, c-format
-msgid "if set to yes, reports check result to tty."
+msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/adsl.pm:23 network/adsl.pm:24 network/adsl.pm:25
#, c-format
-msgid "Restore From CD"
+msgid " - detected"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/adsl.pm:24
#, c-format
-msgid ""
-"You are about to configure your computer to share its Internet connection.\n"
-"With that feature, other computers on your local network will be able to use this computer's Internet connection.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network (LAN)."
+msgid "Sagem (using pppoa) usb"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: network/adsl.pm:25
#, c-format
-msgid "Please choose which network adapter you want to use to connect to Internet."
+msgid "Sagem (using dhcp) usb"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/adsl.pm:36 network/netconnect.pm:294
#, c-format
-msgid "Photo memory card access on your HP multi-function device"
+msgid "Connect to the Internet"
msgstr ""
-#: ../advertising/09-mdksecure.pl:1
+#: network/adsl.pm:37
#, c-format
-msgid "Enhance your computer performance with the help of a selection of partners offering professional solutions compatible with Mandrake Linux"
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: network/adsl.pm:42
#, c-format
-msgid "Authors: "
+msgid "ADSL connection type :"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/adsl.pm:209
#, c-format
-msgid "Internet Connection Sharing is now disabled."
+msgid "Use a floppy"
msgstr ""
-#: ../../standalone/drakups:1
+#: network/adsl.pm:210
#, c-format
-msgid "About DrakUPS"
+msgid "Use my Windows partition"
msgstr ""
-#: ../../security/help.pm:1
+#: network/adsl.pm:211
#, c-format
-msgid "if set to yes, verify checksum of the suid/sgid files."
+msgid "Do it later"
msgstr ""
-#: ../../keyboard.pm:1
+#: network/adsl.pm:214
#, c-format
-msgid "Latin American"
+msgid "Firmware needed"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/adsl.pm:215
#, c-format
-msgid "Japanese text printing mode"
+msgid ""
+"You need the Alcatel microcode.\n"
+"You can provide it now via a floppy or your windows partition,\n"
+"or skip and do it later."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: network/adsl.pm:222
#, c-format
-msgid "Old device file"
+msgid ""
+"You need the Alcatel microcode.\n"
+"Download it at:\n"
+"%s\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: network/drakfirewall.pm:12
#, c-format
-msgid "Info: "
+msgid "Web Server"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: network/drakfirewall.pm:17
#, c-format
-msgid "Button `%s': %s"
+msgid "Domain Name Server"
msgstr ""
-#: ../../any.pm:1 ../../interactive.pm:1 ../../harddrake/sound.pm:1 ../../standalone/drakbug:1 ../../standalone/drakconnect:1 ../../standalone/drakups:1 ../../standalone/drakxtv:1 ../../standalone/harddrake2:1 ../../standalone/service_harddrake:1
+#: network/drakfirewall.pm:22
#, c-format
-msgid "Please wait"
+msgid "SSH server"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#: network/drakfirewall.pm:27
#, c-format
-msgid "Genius NetMouse"
+msgid "FTP server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/drakfirewall.pm:32
#, c-format
-msgid "None"
+msgid "Mail Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/drakfirewall.pm:37
#, c-format
-msgid ""
-"The entered IP is not correct.\n"
-""
+msgid "POP and IMAP Server"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/drakfirewall.pm:42
#, c-format
-msgid "Please be sure that the cron daemon is included in your services."
+msgid "Telnet server"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: network/drakfirewall.pm:48
#, c-format
-msgid "Ethernet Card"
+msgid "Samba server"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: network/drakfirewall.pm:54
#, c-format
-msgid "Delete selected printer"
+msgid "CUPS server"
msgstr ""
-#: ../../services.pm:1 ../../ugtk2.pm:1
+#: network/drakfirewall.pm:115
#, c-format
-msgid "Info"
+msgid "No network card"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: network/drakfirewall.pm:136
#, c-format
msgid ""
-"An error occured while deleting the \"%s\" network interface:\n"
+"drakfirewall configurator\n"
"\n"
-"%s"
-msgstr ""
-
-#: ../../help.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
-#, c-format
-msgid "Install"
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-#: ../../help.pm:1
+#: network/drakfirewall.pm:142
#, c-format
msgid ""
-"Click on \"%s\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"%s\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
+"drakfirewall configurator\n"
"\n"
-"Click on \"%s\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
-msgstr ""
-
-#: ../../steps.pm:1
-#, c-format
-msgid "Exit install"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: network/drakfirewall.pm:159
#, c-format
-msgid "Need a key to save your data"
+msgid "Which services would you like to allow the Internet to connect to?"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/drakfirewall.pm:160
#, c-format
msgid ""
-"Everything has been configured.\n"
-"You may now share Internet connection with other computers on your Local Area Network, using automatic network configuration (DHCP)."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
+#: network/drakfirewall.pm:166
#, c-format
-msgid "Remote CUPS server"
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
-#: ../../mouse.pm:1
+#: network/drakfirewall.pm:174
#, c-format
-msgid "Sun - Mouse"
+msgid "Everything (no firewall)"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/drakfirewall.pm:176
#, c-format
-msgid ""
-"There is only one configured network adapter on your system:\n"
-"\n"
-"%s\n"
-"\n"
-"I am about to setup your Local Area Network with that adapter."
+msgid "Other ports"
msgstr ""
-#: ../../standalone/drakbug:1
+#: network/isdn.pm:127 network/isdn.pm:145 network/isdn.pm:157 network/isdn.pm:163 network/isdn.pm:173 network/isdn.pm:183 network/netconnect.pm:363
#, c-format
-msgid "Submit cpuinfo"
+msgid "ISDN Configuration"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: network/isdn.pm:127
#, c-format
-msgid "Minimal install"
+msgid ""
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
-#: ../../lang.pm:1
+#: network/isdn.pm:140
#, c-format
-msgid "Ethiopia"
+msgid "European protocol (EDSS1)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/isdn.pm:140
#, c-format
-msgid "YES"
+msgid "European protocol"
msgstr ""
-#: ../../security/l10n.pm:1
+#: network/isdn.pm:142
#, c-format
-msgid "Enable \"crontab\" and \"at\" for users"
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
-#: ../../keyboard.pm:1
+#: network/isdn.pm:142
#, c-format
-msgid "Devanagari"
+msgid "Protocol for the rest of the world"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: network/isdn.pm:146
#, c-format
-msgid ""
-"- pci devices: this gives the PCI slot, device and function of this card\n"
-"- eide devices: the device is either a slave or a master device\n"
-"- scsi devices: the scsi bus and the scsi device ids"
+msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: network/isdn.pm:157
#, c-format
-msgid "Total size: %d / %d MB"
+msgid "Found \"%s\" interface do you want to use it ?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: network/isdn.pm:164
#, c-format
-msgid "disabled"
+msgid "What kind of card do you have?"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: network/isdn.pm:165
#, c-format
-msgid "Search for new scanners"
+msgid "ISA / PCMCIA"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/isdn.pm:165
#, c-format
-msgid "Disabling servers..."
+msgid "PCI"
msgstr ""
-#: ../../standalone/drakboot:1
+#: network/isdn.pm:165
#, c-format
-msgid "Installation of %s failed. The following error occured:"
+msgid "USB"
msgstr ""
-#: ../../standalone/drakboot:1
+#: network/isdn.pm:165
#, c-format
-msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgid "I don't know"
msgstr ""
-#: ../../install_any.pm:1
+#: network/isdn.pm:174
#, c-format
msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They don't have any known security\n"
-"issues, but some new ones could be found. In that case, you must make sure\n"
-"to upgrade as soon as possible.\n"
"\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"Do you really want to install these servers?\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card.\n"
""
msgstr ""
-#: ../../printer/main.pm:1
-#, c-format
-msgid "Network printer (TCP/Socket)"
-msgstr ""
-
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid "Backup User files..."
-msgstr ""
-
-#: ../../steps.pm:1
+#: network/isdn.pm:178
#, c-format
-msgid "Install system"
+msgid "Continue"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: network/isdn.pm:178
#, c-format
-msgid "First DNS Server (optional)"
+msgid "Abort"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/isdn.pm:184
#, c-format
-msgid "Alternatively, you can specify a device name/file name in the input line"
+msgid "Which of the following is your ISDN card?"
msgstr ""
-#: ../../security/help.pm:1
+#: network/netconnect.pm:90
#, c-format
-msgid ""
-"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
-"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
-"symlink /etc/security/msec/server to point to\n"
-"/etc/security/msec/server.<SERVER_LEVEL>.\n"
-"\n"
-"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
-"add a service if it is present in the file during the installation of\n"
-"packages."
+msgid "Ad-hoc"
msgstr ""
-#: ../../keyboard.pm:1
+#: network/netconnect.pm:91
#, c-format
-msgid "Russian (Phonetic)"
+msgid "Managed"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: network/netconnect.pm:92
#, c-format
-msgid "dhcpd Config..."
+msgid "Master"
msgstr ""
-#: ../../any.pm:1
+#: network/netconnect.pm:93
#, c-format
-msgid "LILO/grub Installation"
+msgid "Repeater"
msgstr ""
-#: ../../keyboard.pm:1
+#: network/netconnect.pm:94
#, c-format
-msgid "Israeli"
+msgid "Secondary"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:95
#, c-format
-msgid "Printer \"%s\" on server \"%s\""
+msgid "Auto"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: network/netconnect.pm:135 standalone/drakconnect:57
#, c-format
-msgid "Floppy can be removed now"
+msgid "Network & Internet Configuration"
msgstr ""
-#: ../../help.pm:1
+#: network/netconnect.pm:140
#, c-format
-msgid "Truly minimal install"
+msgid ""
+"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 ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:148 printer/printerdrake.pm:3749
#, c-format
-msgid "Denmark"
+msgid "Expert Mode"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: network/netconnect.pm:152 network/netconnect.pm:789
#, c-format
-msgid "Moving partition..."
+msgid "Network Configuration Wizard"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/netconnect.pm:152 printer/printerdrake.pm:921
#, c-format
-msgid "(This) DHCP Server IP"
+msgid "Detecting devices..."
msgstr ""
-#: ../../Xconfig/test.pm:1
+#. -PO: here, "(detected)" string will be appended to eg "ADSL connection"
+#: network/netconnect.pm:172
#, c-format
-msgid "Test of the configuration"
+msgid "Normal modem connection"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:172
#, c-format
-msgid "Installing %s ..."
+msgid "(detected on port %s)"
msgstr ""
-#: ../../help.pm:1
+#: network/netconnect.pm:173
#, c-format
-msgid ""
-"If you told the installer that you wanted to individually select packages,\n"
-"it will present a tree containing all packages classified by groups and\n"
-"subgroups. While browsing the tree, you can select entire groups,\n"
-"subgroups, or individual packages.\n"
-"\n"
-"Whenever you select a package on the tree, a description appears on the\n"
-"right to let you know the purpose of the package.\n"
-"\n"
-"!! If a server package has been selected, either because you specifically\n"
-"chose the individual package or because it was part of a group of packages,\n"
-"you will be asked to confirm that you really want those servers to be\n"
-"installed. By default Mandrake Linux will automatically start any installed\n"
-"services at boot time. Even if they are safe and have no known issues at\n"
-"the time the distribution was shipped, it is entirely possible that that\n"
-"security holes were discovered after this version of Mandrake Linux was\n"
-"finalized. If you do not know what a particular service is supposed to do\n"
-"or why it is being installed, then click \"%s\". Clicking \"%s\" will\n"
-"install the listed services and they will be started automatically by\n"
-"default during boot. !!\n"
-"\n"
-"The \"%s\" option is used to disable the warning dialog which appears\n"
-"whenever the installer automatically selects a package to resolve a\n"
-"dependency issue. Some packages have relationships between each other such\n"
-"that installation of a package requires that some other program is also\n"
-"rerquired to be installed. The installer can determine which packages are\n"
-"required to satisfy a dependency to successfully complete the installation.\n"
-"\n"
-"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
-"package list created during a previous installation. This is useful if you\n"
-"have a number of machines that you wish to configure identically. Clicking\n"
-"on this icon will ask you to insert a floppy disk previously created at the\n"
-"end of another installation. See the second tip of last step on how to\n"
-"create such a floppy."
+msgid "Winmodem connection"
msgstr ""
-#: ../../standalone/drakups:1
+#: network/netconnect.pm:173 network/netconnect.pm:175 network/netconnect.pm:176 network/netconnect.pm:177 network/netconnect.pm:179
#, c-format
-msgid "Port:"
+msgid "(detected)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: network/netconnect.pm:174
#, c-format
-msgid "Choose your filesystem encryption key"
+msgid "ISDN connection"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:174
#, c-format
-msgid "Sierra Leone"
+msgid "(detected %s)"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:175
#, c-format
-msgid "Botswana"
+msgid "ADSL connection"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:176
#, c-format
-msgid "Andorra"
+msgid "Cable connection"
msgstr ""
-#: ../../standalone/draksec:1
+#: network/netconnect.pm:177
#, c-format
-msgid "(default value: %s)"
+msgid "LAN connection"
msgstr ""
-#: ../../security/help.pm:1
+#: network/netconnect.pm:179
#, c-format
-msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
+msgid "Wireless connection"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:198
#, c-format
-msgid "Alternative test page (Letter)"
+msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/netconnect.pm:238
#, c-format
msgid ""
-"DHCP Server Configuration.\n"
+"We are now going to configure the %s connection.\n"
"\n"
-"Here you can select different options for the DHCP server configuration.\n"
-"If you don't know the meaning of an option, simply leave it as it is.\n"
"\n"
-""
+"Press \"%s\" to continue."
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: network/netconnect.pm:239 network/tools.pm:228
#, c-format
-msgid "Choose an X server"
+msgid "Next"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
+#: network/netconnect.pm:248
#, c-format
-msgid "Copying to memory to allow removing the CDROM"
+msgid "Connection Configuration"
msgstr ""
-#: ../../install_interactive.pm:1
+#: network/netconnect.pm:249
#, c-format
-msgid "Swap partition size in MB: "
+msgid "Please fill or check the field below"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:256 standalone/drakconnect:719
#, c-format
-msgid "No changes to backup!"
+msgid "Card IRQ"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: network/netconnect.pm:257 standalone/drakconnect:720
#, c-format
-msgid ""
-"Formatted\n"
-""
+msgid "Card mem (DMA)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: network/netconnect.pm:258 standalone/drakconnect:721
#, c-format
-msgid "Type of install"
+msgid "Card IO"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:259 standalone/drakconnect:722
#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgid "Card IO_0"
msgstr ""
-#: ../../modules/parameters.pm:1
+#: network/netconnect.pm:260 standalone/drakconnect:723
#, c-format
-msgid "%d comma separated numbers"
+msgid "Card IO_1"
msgstr ""
-#: ../../services.pm:1
+#: network/netconnect.pm:261 standalone/drakconnect:724
#, c-format
-msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+msgid "Your personal phone number"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: network/netconnect.pm:262 standalone/drakconnect:725
#, c-format
-msgid "Automatic Steps Configuration"
+msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:263 standalone/drakconnect:726
#, c-format
-msgid "Barbados"
+msgid "Provider phone number"
msgstr ""
-#: ../advertising/02-community.pl:1
+#: network/netconnect.pm:264 standalone/drakconnect:727
#, c-format
-msgid "Want to know more and to contribute to the Open Source community? Get involved in the Free Software world!"
+msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:265 standalone/drakconnect:728
#, c-format
-msgid "Please select data to backup..."
+msgid "Provider dns 2 (optional)"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: network/netconnect.pm:266
#, c-format
-msgid ""
-"Connection failed.\n"
-"Verify your configuration in the Mandrake Control Center."
+msgid "Choose your country"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: network/netconnect.pm:267 standalone/drakconnect:731
#, c-format
-msgid "received"
+msgid "Dialing mode"
msgstr ""
-#: ../../security/l10n.pm:1
+#: network/netconnect.pm:268 standalone/drakconnect:743
#, c-format
-msgid "Enable su only from the wheel group members or for any user"
+msgid "Connection speed"
msgstr ""
-#: ../../standalone/logdrake:1
+#: network/netconnect.pm:269 standalone/drakconnect:744
#, c-format
-msgid "/File/_New"
+msgid "Connection timeout (in sec)"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/netconnect.pm:272 standalone/drakconnect:729
#, c-format
-msgid "The DNS Server IP"
+msgid "Account Login (user name)"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: network/netconnect.pm:274 standalone/drakconnect:730 standalone/drakconnect:764
#, c-format
-msgid "IP Range End:"
+msgid "Account Password"
msgstr ""
-#: ../../security/level.pm:1
+#: network/netconnect.pm:295
#, c-format
-msgid "High"
+msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: network/netconnect.pm:332
#, c-format
-msgid "Add a new printer to the system"
+msgid "What kind is your ISDN connection?"
msgstr ""
-#: ../../any.pm:1
+#: network/netconnect.pm:333
#, c-format
-msgid "NoVideo"
+msgid "Internal ISDN card"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: network/netconnect.pm:333
#, c-format
-msgid "this field describes the device"
+msgid "External ISDN modem"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:363
#, c-format
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgid "Do you want to start a new configuration ?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:366
#, c-format
-msgid "Local Printers"
+msgid "I have detected an ISDN PCI card, but I don't know its type. Please select a PCI card on the next screen."
msgstr ""
-#: ../../standalone/drakpxe:1
+#: network/netconnect.pm:375
#, c-format
-msgid "Installation image directory"
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../any.pm:1
+#: network/netconnect.pm:390 network/netconnect.pm:420
#, c-format
-msgid "NIS Server"
+msgid "You don't have any winmodem"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: network/netconnect.pm:399 network/netconnect.pm:425
#, c-format
-msgid "Port: %s"
+msgid ""
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:401
#, c-format
-msgid "Spain"
+msgid "Title"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: network/netconnect.pm:401
#, c-format
-msgid "local config: %s"
+msgid "\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
-#: ../../any.pm:1
+#: network/netconnect.pm:401
#, c-format
-msgid "This user name has already been added"
+msgid "Install rpm"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: network/netconnect.pm:401
#, c-format
-msgid "To do so, you need to supply the firmware file for your scanner so that it can be installed."
+msgid "Do nothing"
msgstr ""
-#: ../../interactive.pm:1
+#: network/netconnect.pm:472
#, c-format
-msgid "Choose a file"
+msgid "Please choose which serial port your modem is connected to."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: network/netconnect.pm:486
#, c-format
-msgid "Apply"
+msgid "Dialup options"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: network/netconnect.pm:488 standalone/drakconnect:733
#, c-format
-msgid "Auto-detect available ports"
+msgid "Connection name"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:489 standalone/drakconnect:734
#, c-format
-msgid "San Marino"
+msgid "Phone number"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/netconnect.pm:490 standalone/drakconnect:735
#, c-format
-msgid "Internet Connection Sharing currently disabled"
+msgid "Login ID"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: network/netconnect.pm:492 standalone/drakconnect:737
#, c-format
-msgid "Belgium"
+msgid "PAP"
msgstr ""
-#: ../../standalone/drakperm:1
+#: network/netconnect.pm:492 standalone/drakconnect:737
#, c-format
-msgid ""
-"The current security level is %s.\n"
-"Select permissions to see/edit"
+msgid "Terminal-based"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:492 standalone/drakconnect:737
#, c-format
-msgid "Kuwait"
+msgid "Script-based"
msgstr ""
-#: ../../any.pm:1
+#: network/netconnect.pm:492 standalone/drakconnect:737
#, c-format
-msgid "Choose the window manager to run:"
+msgid "CHAP"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:493 standalone/drakconnect:738
#, c-format
-msgid "December"
+msgid "Domain name"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: network/netconnect.pm:494 standalone/drakconnect:739
#, c-format
-msgid "sub generation of the cpu"
+msgid "First DNS Server (optional)"
msgstr ""
-#: ../../standalone/drakbug:1
+#: network/netconnect.pm:495 standalone/drakconnect:740
#, c-format
-msgid "First Time Wizard"
+msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:517
#, c-format
-msgid "Taiwan"
+msgid "Select the network interface to configure:"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:518 network/shorewall.pm:77 standalone/drakconnect:412 standalone/drakgw:212
#, c-format
-msgid "Pakistan"
+msgid "Net Device"
msgstr ""
-#: ../../standalone/logdrake:1
+#: network/netconnect.pm:535
#, c-format
-msgid "please wait, parsing file: %s"
+msgid ""
+"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 ""
-#: ../../install_steps.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: network/netconnect.pm:539
#, c-format
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"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 ""
-#: ../../install_steps_gtk.pm:1
+#: network/netconnect.pm:553
#, c-format
-msgid "Importance: "
+msgid "Configuring network device %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:553
#, c-format
-msgid "To be able to print with your Lexmark inkjet and this configuration, you need the inkjet printer drivers provided by Lexmark (http://www.lexmark.com/). Click on the \"Drivers\" link. Then choose your model and afterwards \"Linux\" as operating system. The drivers come as RPM packages or shell scripts with interactive graphical installation. You do not need to do this configuration by the graphical frontends. Cancel directly after the license agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and adjust the head alignment settings with this program."
+msgid " (driver %s)"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1
+#: network/netconnect.pm:555
#, c-format
-msgid "Permissions"
+msgid "Automatic IP"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: network/netconnect.pm:555
#, c-format
-msgid "Provider name (ex provider.net)"
+msgid "(bootp/dhcp/zeroconf)"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: network/netconnect.pm:556 printer/printerdrake.pm:426 standalone/drakconnect:122 standalone/drakconnect:263 standalone/drakconnect:584 standalone/drakups:283
#, c-format
-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 this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
+msgid "IP address"
msgstr ""
-#: ../../install_interactive.pm:1
+#: network/netconnect.pm:557 standalone/drakconnect:268 standalone/drakconnect:585 standalone/drakgw:305
#, c-format
-msgid "Use the Windows partition for loopback"
+msgid "Netmask"
msgstr ""
-#: ../../keyboard.pm:1
+#: network/netconnect.pm:558
#, c-format
-msgid "Armenian (typewriter)"
+msgid "DHCP host name"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: network/netconnect.pm:559 standalone/drakconnect:338
#, c-format
-msgid "Floppy Disk"
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: network/netconnect.pm:560 standalone/drakconnect:339
#, c-format
-msgid "Connection type: "
+msgid "Network Hotplugging"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: network/netconnect.pm:561
#, c-format
-msgid "Graphical interface"
+msgid "Assign host name from DHCP address"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:562 standalone/drakconnect:337
#, c-format
-msgid "Chad"
+msgid "Start at boot"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:570 printer/printerdrake.pm:1340
#, c-format
-msgid "India"
+msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#: network/netconnect.pm:573
#, c-format
-msgid "XFree %s with 3D hardware acceleration"
+msgid "Warning : IP address %s is usually reserved !"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:602
#, c-format
-msgid "Slovakia"
+msgid "Please enter the wireless parameters for this card:"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:604 standalone/drakconnect:305
#, c-format
-msgid "Singapore"
+msgid "Operating Mode"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:606 standalone/drakconnect:306
#, c-format
-msgid "Cambodia"
+msgid "Netwok name (ESSID)"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: network/netconnect.pm:607 standalone/drakconnect:307
#, c-format
-msgid ""
-"Monitor HorizSync: %s\n"
-""
+msgid "Network ID"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:608 standalone/drakconnect:308
#, c-format
-msgid "Interval cron not available as non-root"
+msgid "Operating frequency"
msgstr ""
-#: ../../standalone/drakperm:1 ../../standalone/drakperm:1
+#: network/netconnect.pm:609 standalone/drakconnect:309
#, c-format
-msgid "Path"
+msgid "Sensitivity threshold"
msgstr ""
-#: ../../standalone/drakbug:1
+#: network/netconnect.pm:610 standalone/drakconnect:310
#, c-format
-msgid "NOT FOUND"
+msgid "Bitrate (in b/s)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:612 standalone/drakconnect:321
#, c-format
-msgid "Here you can specify any arbitrary command line into which the job should be piped instead of being sent directly to a printer."
+msgid "RTS/CTS"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:613
#, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine is booted.\n"
-"\n"
-"It is possible that the automatic starting was turned off by changing to a higher security level, because the printing system is a potential point for attacks.\n"
-"\n"
-"Do you want to have the automatic starting of the printing system turned on again?"
+"RTS/CTS adds a handshake before each packet transmission to make sure that the\n"
+"channel is clear. This adds overhead, but increase performance in case of hidden\n"
+"nodes or large number of active nodes. This parameters set the size of the\n"
+"smallest packet for which the node sends RTS, a value equal to the maximum\n"
+"packet size disable the scheme. You may also set this parameter to auto, fixed\n"
+"or off."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:620 standalone/drakconnect:322
#, c-format
-msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+msgid "Fragmentation"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: network/netconnect.pm:621 standalone/drakconnect:323
#, c-format
-msgid "Add host"
+msgid "Iwconfig command extra arguments"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: network/netconnect.pm:622
#, c-format
msgid ""
-"If you really think that you know which driver is the right one for your card\n"
-"you can pick one in the above list.\n"
+"Here, one can configure some extra wireless parameters such as:\n"
+"ap, channel, commit, enc, power, retry, sens, txpower (nick is already set as the hostname).\n"
"\n"
-"The current driver for your \"%s\" sound card is \"%s\" "
+"See iwpconfig(8) man page for further information."
msgstr ""
-#: ../../any.pm:1
+#: network/netconnect.pm:627 standalone/drakconnect:324
+#, c-format
+msgid "Iwspy command extra arguments"
+msgstr ""
+
+#: network/netconnect.pm:628
#, c-format
msgid ""
-"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror and nautilus.\n"
+"Iwspy is used to set a list of addresses in a wireless network\n"
+"interface and to read back quality of link information for each of those.\n"
"\n"
-"\"Custom\" permit a per-user granularity.\n"
-""
+"This information is the same as the one available in /proc/net/wireless :\n"
+"quality of the link, signal strength and noise level.\n"
+"\n"
+"See iwpspy(8) man page for further information."
+msgstr ""
+
+#: network/netconnect.pm:636 standalone/drakconnect:325
+#, c-format
+msgid "Iwpriv command extra arguments"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: network/netconnect.pm:637
#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Iwpriv enable to set up optionals (private) parameters of a wireless network\n"
+"interface.\n"
+"\n"
+"Iwpriv deals with parameters and setting specific to each driver (as opposed to\n"
+"iwconfig which deals with generic ones).\n"
+"\n"
+"In theory, the documentation of each device driver should indicate how to use\n"
+"those interface specific commands and their effect.\n"
+"\n"
+"See iwpriv(8) man page for further information."
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
+#: network/netconnect.pm:651
#, c-format
-msgid "No CDROM support"
+msgid "Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes)."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: network/netconnect.pm:655
#, c-format
-msgid "Wireless connection"
+msgid "Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."
msgstr ""
-#: ../../standalone/drakxtv:1
+#: network/netconnect.pm:673
#, c-format
-msgid "China (broadcast)"
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:677 standalone/drakgw:248 standalone/drakpxe:142
#, c-format
-msgid "Use quota for backup files."
+msgid "Choose the network interface"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:678
#, c-format
-msgid "Configuring printer \"%s\"..."
+msgid "Please choose which network adapter you want to use to connect to Internet."
msgstr ""
-#: ../../fs.pm:1
+#: network/netconnect.pm:698
#, c-format
msgid ""
-"Do not allow execution of any binaries on the mounted\n"
-"file system. This option might be useful for a server that has file systems\n"
-"containing binaries for architectures other than its own."
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: network/netconnect.pm:703
#, c-format
-msgid "Enter a Zeroconf host name which will be the one that your machine will get back to other machines on the network:"
+msgid "Host name"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: network/netconnect.pm:704
#, c-format
-msgid "Internet connection"
+msgid "DNS server"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: network/netconnect.pm:705
#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
+msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../advertising/01-thanks.pl:1
+#: network/netconnect.pm:707
#, c-format
-msgid "Welcome to the Open Source world."
+msgid "Gateway device"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:712
#, c-format
-msgid "Bosnia and Herzegovina"
+msgid "DNS server address should be in format 1.2.3.4"
msgstr ""
-#: ../../fsedit.pm:1
+#: network/netconnect.pm:716
#, c-format
-msgid ""
-"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n"
-""
+msgid "Gateway address should be in format 1.2.3.4"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: network/netconnect.pm:729
#, c-format
-msgid ""
-"You must enter a host name or an IP address.\n"
-""
+msgid "Enter a Zeroconf host name which will be the one that your machine will get back to other machines on the network:"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: network/netconnect.pm:730
#, c-format
-msgid "Netherlands"
+msgid "Zeroconf Host name"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:733
#, c-format
-msgid "Sending files by FTP"
+msgid "Zeroconf host name must not contain a ."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: network/netconnect.pm:747
#, c-format
-msgid "Internal ISDN card"
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
+""
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: network/netconnect.pm:748
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s) which currently uses \"%s\""
+msgid "Internet connection"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: network/netconnect.pm:759
#, c-format
-msgid "Title"
+msgid "Proxies configuration"
msgstr ""
-#: ../../standalone/drakfont:1
+#: network/netconnect.pm:761
#, c-format
-msgid "Install & convert Fonts"
+msgid "HTTP proxy"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:762
#, c-format
-msgid "WARNING"
+msgid "FTP proxy"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: network/netconnect.pm:766
#, c-format
-msgid "Installing bootloader"
+msgid "Proxy should be http://..."
msgstr ""
-#: ../../standalone/drakups:1
+#: network/netconnect.pm:770
#, c-format
-msgid "The name of your ups"
+msgid "URL should begin with 'ftp:' or 'http:'"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: network/netconnect.pm:781
#, c-format
-msgid "replay"
+msgid "Configuration is complete, do you want to apply settings ?"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:789 network/netconnect.pm:803
#, c-format
-msgid "Expect is an extension to the Tcl scripting language that allows interactive sessions without user intervention."
+msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:810
#, c-format
-msgid "Virgin Islands (U.S.)"
+msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr ""
-#: ../../partition_table.pm:1
+#: network/netconnect.pm:815 network/netconnect.pm:882
#, c-format
-msgid "Bad backup file"
+msgid "Network Configuration"
msgstr ""
-#: ../../standalone/drakgw:1
+#: network/netconnect.pm:816
#, c-format
msgid ""
-"The setup of Internet connection sharing has already been done.\n"
-"It's currently disabled.\n"
+"A problem occured while restarting the network: \n"
"\n"
-"What would you like to do?"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Enter IP address and port of the host whose printers you want to use."
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:826
#, c-format
-msgid "Pipe into command"
+msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../install_interactive.pm:1
+#: network/netconnect.pm:835 standalone/drakconnect:778
#, c-format
-msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+msgid "Testing your connection..."
msgstr ""
-#: ../../lang.pm:1
+#: network/netconnect.pm:851
#, c-format
-msgid "Haiti"
+msgid "The system is now connected to the Internet."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: network/netconnect.pm:852
#, c-format
-msgid "Detecting devices..."
+msgid "For security reasons, it will be disconnected now."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/netconnect.pm:853
#, c-format
-msgid "Custom allows you to specify your own day and time. The other options use run-parts in /etc/crontab."
+msgid ""
+"The system doesn't seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: network/netconnect.pm:867
#, c-format
msgid ""
-"Description of the fields:\n"
+"Congratulations, the network and Internet configuration is finished.\n"
"\n"
""
msgstr ""
-#: ../../standalone/draksec:1
+#: network/netconnect.pm:870
#, c-format
-msgid "Basic options"
+msgid "After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: network/netconnect.pm:871
#, c-format
-msgid "the name of the CPU"
+msgid ""
+"Problems occured during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection doesn't work, you might want to relaunch the configuration."
msgstr ""
-#: ../../security/l10n.pm:1
+#: network/netconnect.pm:883
#, c-format
-msgid "Accept bogus IPv4 error messages"
+msgid ""
+"Because you are doing a network installation, your network is already configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your Internet & Network connection.\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: network/shorewall.pm:26
#, c-format
-msgid "Refreshing printer data..."
+msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../install2.pm:1
+#: network/shorewall.pm:27
#, c-format
-msgid "You must also format %s"
+msgid "Warning! An existing firewalling configuration has been detected. You may need some manual fixes after installation."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: network/shorewall.pm:70
#, c-format
-msgid "Be careful: this operation is dangerous."
+msgid ""
+"Please enter the name of the interface connected to the internet. \n"
+" \n"
+"Examples:\n"
+" ppp+ for modem or DSL connections, \n"
+" eth0, or eth1 for cable connection, \n"
+" ippp+ for a isdn connection.\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: network/tools.pm:206
#, c-format
-msgid "Insert a floppy containing package selection"
+msgid "Firmware copy failed, file %s not found"
msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: network/tools.pm:207
#, c-format
-msgid "Server: "
+msgid "Firmware copy succeeded"
msgstr ""
-#: ../../standalone/draksec:1
+#: network/tools.pm:227
#, c-format
-msgid "Security Alerts:"
+msgid "Insert floppy"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
+#: network/tools.pm:228
#, c-format
-msgid "Sweden"
+msgid "Insert a FAT formatted floppy in drive %s with %s in root directory and press %s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: network/tools.pm:229
#, c-format
-msgid "Use Expect for SSH"
+msgid "Floppy access error, unable to mount device %s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: partition_table.pm:632
#, c-format
-msgid "Master"
+msgid "mount failed: "
msgstr ""
-#: ../../lang.pm:1
+#: partition_table.pm:696
#, c-format
-msgid "Poland"
+msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: partition_table.pm:714
#, c-format
-msgid "Other ports"
+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."
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: partition_table.pm:802
#, c-format
-msgid "number of capture buffers for mmap'ed capture"
+msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/adsl.pm:1 ../../network/adsl.pm:1
+#: partition_table.pm:804
#, c-format
-msgid " - detected"
+msgid "Bad backup file"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: partition_table.pm:824
#, c-format
-msgid "SMBus controllers"
+msgid "Error writing to file %s"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: partition_table/raw.pm:193
#, c-format
-msgid "Connection timeout (in sec)"
+msgid ""
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted data."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: pkgs.pm:24
#, c-format
-msgid "Some of the early i486DX-100 chips cannot reliably return to operating mode after the \"halt\" instruction is used"
+msgid "must have"
msgstr ""
-#: ../../keyboard.pm:1
+#: pkgs.pm:25
#, c-format
-msgid "Croatian"
+msgid "important"
msgstr ""
-#: ../../help.pm:1
+#: pkgs.pm:26
#, c-format
-msgid "Use existing partition"
+msgid "very nice"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: pkgs.pm:27
#, c-format
-msgid "Auto"
+msgid "nice"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: pkgs.pm:28
#, c-format
-msgid "Unable to contact mirror %s"
+msgid "maybe"
msgstr ""
-#: ../../standalone/logdrake:1
+#: printer/cups.pm:87
#, c-format
-msgid "/Help/_About..."
+msgid "(on %s)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/cups.pm:87
#, c-format
-msgid "Remove user directories before restore."
+msgid "(on this machine)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/cups.pm:99 standalone/printerdrake:194
#, c-format
-msgid "You are going to configure a remote printer. This needs working network access, but your network is not configured yet. If you go on without network configuration, you will not be able to use the printer which you are configuring now. How do you want to proceed?"
+msgid "Configured on other machines"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/cups.pm:101
#, c-format
-msgid "CUPS printer configuration"
+msgid "On CUPS server \"%s\""
msgstr ""
-#: ../../standalone/drakfont:1
+#: printer/cups.pm:101 printer/printerdrake.pm:3669 printer/printerdrake.pm:3678 printer/printerdrake.pm:3816 printer/printerdrake.pm:3827 printer/printerdrake.pm:4039
#, c-format
-msgid "could not find any font in your mounted partitions"
+msgid " (Default)"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/data.pm:15
#, c-format
-msgid "F00f bug"
+msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#: printer/data.pm:16
#, c-format
-msgid "XFree %s"
+msgid "PDQ"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/data.pm:27
#, c-format
-msgid "Domain Name:"
+msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../security/l10n.pm:1
+#: printer/data.pm:28
#, c-format
-msgid "Root umask"
+msgid "LPD"
msgstr ""
-#: ../../any.pm:1
+#: printer/data.pm:49
#, c-format
-msgid "On Floppy"
+msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../security/l10n.pm:1
+#: printer/data.pm:50
#, c-format
-msgid "Reboot by the console user"
+msgid "LPRng"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: printer/data.pm:75
#, c-format
-msgid "Restore"
+msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../standalone/drakclock:1
+#: printer/detect.pm:141 printer/detect.pm:219 printer/detect.pm:421 printer/detect.pm:458 printer/printerdrake.pm:670
#, c-format
-msgid "Server:"
+msgid "Unknown Model"
msgstr ""
-#: ../../security/help.pm:1
+#: printer/main.pm:28
#, c-format
-msgid "if set to yes, check if the network devices are in promiscuous mode."
+msgid "Local printer"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
+#: printer/main.pm:29
#, c-format
-msgid "Looking for available packages..."
+msgid "Remote printer"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: printer/main.pm:30
#, c-format
-msgid "Please wait, setting up system configuration files on USB key..."
+msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../any.pm:1
+#: printer/main.pm:31 printer/printerdrake.pm:1363
#, c-format
-msgid "Init Message"
+msgid "Printer on remote lpd server"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: printer/main.pm:32
#, c-format
-msgid "Rescue partition table"
+msgid "Network printer (TCP/Socket)"
msgstr ""
-#: ../../lang.pm:1
+#: printer/main.pm:33
#, c-format
-msgid "Cyprus"
+msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: printer/main.pm:34
#, c-format
-msgid "Connection complete."
+msgid "Printer on NetWare server"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/main.pm:35 printer/printerdrake.pm:1367
#, c-format
-msgid "Remove from RAID"
+msgid "Enter a printer device URI"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/main.pm:36
#, c-format
-msgid "This encryption key is too simple (must be at least %d characters long)"
+msgid "Pipe job into a command"
msgstr ""
-#: ../../standalone/drakbug:1
+#: printer/main.pm:305 printer/main.pm:573 printer/main.pm:1515 printer/main.pm:2178 printer/printerdrake.pm:1772 printer/printerdrake.pm:4073
#, c-format
-msgid "Configuration Wizards"
+msgid "Unknown model"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/main.pm:330 standalone/printerdrake:193
#, c-format
-msgid "ISDN connection"
+msgid "Configured on this machine"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/main.pm:336 printer/printerdrake.pm:939
#, c-format
-msgid "CD-R / DVD-R"
+msgid " on parallel port #%s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/main.pm:339 printer/printerdrake.pm:941
#, c-format
-msgid "primary"
+msgid ", USB printer #%s"
msgstr ""
-#: ../../printer/main.pm:1
+#: printer/main.pm:341
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgid ", USB printer"
msgstr ""
-#: ../../help.pm:1
+#: printer/main.pm:346
#, c-format
-msgid ""
-"This dialog is used to choose which services you wish to start at boot\n"
-"time.\n"
-"\n"
-"DrakX will list all the services available on the current installation.\n"
-"Review each one carefully and uncheck those which are not needed at boot\n"
-"time.\n"
-"\n"
-"A short explanatory text will be displayed about a service when it is\n"
-"selected. However, if you are not sure whether a service is useful or not,\n"
-"it is safer to leave the default behavior.\n"
-"\n"
-"!! At this stage, be very careful if you intend to use your machine as a\n"
-"server: you will probably not want to start any services that you do not\n"
-"need. Please remember that several services can be dangerous if they are\n"
-"enabled on a server. In general, select only the services you really need.\n"
-"!!"
+msgid ", multi-function device on parallel port #%s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/main.pm:349
#, c-format
-msgid "Netwok name (ESSID)"
+msgid ", multi-function device on a parallel port"
msgstr ""
-#: ../../lang.pm:1
+#: printer/main.pm:351
#, c-format
-msgid "Niue"
+msgid ", multi-function device on USB"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../help.pm:1 ../../printer/printerdrake.pm:1
+#: printer/main.pm:353
#, c-format
-msgid "Skip"
+msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../services.pm:1
+#: printer/main.pm:355
#, c-format
-msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+msgid ", multi-function device"
msgstr ""
-#: ../../standalone/drakups:1
+#: printer/main.pm:358
#, c-format
-msgid "Action"
+msgid ", printing to %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/main.pm:360
#, c-format
-msgid "the CPU frequency in MHz (Megahertz which in first approximation may be coarsely assimilated to number of instructions the cpu is able to execute per second)"
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../pkgs.pm:1
+#: printer/main.pm:362
#, c-format
-msgid "important"
+msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: printer/main.pm:366
#, c-format
-msgid "Mandrake Linux Printer Management Tool"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: printer/main.pm:370
#, c-format
-msgid "Total Progress"
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../help.pm:1
+#: printer/main.pm:372
#, c-format
-msgid ""
-"DrakX will first detect any IDE devices present in your computer. It will\n"
-"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
-"found, DrakX will automatically install the appropriate driver.\n"
-"\n"
-"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
-"your hard drives. If so, you'll have to specify your hardware by hand.\n"
-"\n"
-"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
-"want to configure options for it. You should allow DrakX to probe the\n"
-"hardware for the card-specific options which are needed to initialize the\n"
-"adapter. Most of the time, DrakX will get through this step without any\n"
-"issues.\n"
-"\n"
-"If DrakX is not able to probe for the options to automatically determine\n"
-"which parameters need to be passed to the hardware, you'll need to manually\n"
-"configure the driver."
+msgid ", using command %s"
msgstr ""
-#: ../../lang.pm:1
+#: printer/main.pm:387
#, c-format
-msgid "Aruba"
+msgid "Parallel port #%s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/main.pm:390 printer/printerdrake.pm:955 printer/printerdrake.pm:978 printer/printerdrake.pm:996
#, c-format
-msgid "Users"
+msgid "USB printer #%s"
msgstr ""
-#: ../../standalone/drakups:1
+#: printer/main.pm:392
#, c-format
-msgid "Name:"
+msgid "USB printer"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: printer/main.pm:397
#, c-format
-msgid "Preparing bootloader..."
+msgid "Multi-function device on parallel port #%s"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: printer/main.pm:400
#, c-format
-msgid "Enter your user information, password will be used for screensaver"
+msgid "Multi-function device on a parallel port"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/main.pm:402
#, c-format
-msgid "Gateway (e.g. %s)"
+msgid "Multi-function device on USB"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../install_steps_interactive.pm:1
+#: printer/main.pm:404
#, c-format
-msgid "The passwords do not match"
+msgid "Multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/main.pm:406
#, c-format
-msgid ""
-"Examples for correct IPs:\n"
-""
+msgid "Multi-function device"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/main.pm:409
#, c-format
-msgid "Please choose the media for backup."
+msgid "Prints into %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/main.pm:411
#, c-format
-msgid "Frequency (MHz)"
+msgid "LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../install_any.pm:1
+#: printer/main.pm:413
#, c-format
-msgid "To use this saved packages selection, boot installation with ``linux defcfg=floppy''"
+msgid "TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/main.pm:417
#, c-format
-msgid "the number of the processor"
+msgid "SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: printer/main.pm:421
#, c-format
-msgid "Hardware clock set to GMT"
+msgid "Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/main.pm:423
#, c-format
-msgid "Do you want to start a new configuration ?"
+msgid "Uses command %s"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/main.pm:425
#, c-format
-msgid "Give a file name"
+msgid "URI: %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/main.pm:570 printer/printerdrake.pm:716 printer/printerdrake.pm:2317
#, c-format
-msgid "Please choose the port that your printer is connected to."
+msgid "Raw printer (No driver)"
msgstr ""
-#: ../../standalone/livedrake:1
+#: printer/main.pm:1084 printer/printerdrake.pm:174 printer/printerdrake.pm:186
#, c-format
-msgid "Change Cd-Rom"
+msgid "Local network(s)"
msgstr ""
-#: ../../lang.pm:1
+#: printer/main.pm:1086 printer/printerdrake.pm:190
#, c-format
-msgid "Paraguay"
+msgid "Interface \"%s\""
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/main.pm:1088
#, c-format
-msgid "Configuration is complete, do you want to apply settings ?"
+msgid "Network %s"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: printer/main.pm:1090
#, c-format
-msgid "Use Incremental/Differential Backups (do not replace old backups)"
+msgid "Host %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/main.pm:1119
#, c-format
-msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \tTo net boot clients, each client needs a dhcpd.conf entry, assigning an IP \n"
-" \taddress and net boot images to the machine. drakTermServ helps create/remove \n"
-" \tthese entries.\n"
-"\t\t\t\n"
-" \t(PCI cards may omit the image - etherboot will request the correct image. \n"
-"\t\t\tYou should also consider that when etherboot looks for the images, it expects \n"
-"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \tA typical dhcpd.conf stanza to support a diskless client looks like:"
+msgid "%s (Port %s)"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: printer/printerdrake.pm:19
#, c-format
-msgid "There's no known driver for your sound card (%s)"
+msgid ""
+"The HP LaserJet 1000 needs its firmware to be uploaded after being turned on. Download the Windows driver package from the HP web site (the firmware on the printer's CD does not work) and extract the firmware file from it by uncompresing the self-extracting '.exe' file with the 'unzip' utility and searching for the 'sihp1000.img' file. Copy this file into the '/etc/printer' directory. There it will be found by the automatic uploader script and uploaded whenever the printer is connected and turned on.\n"
+""
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: printer/printerdrake.pm:57
#, c-format
-msgid "force"
+msgid "CUPS printer configuration"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:58
#, c-format
-msgid "Exit"
+msgid "Here you can choose whether the printers connected to this machine should be accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:59
#, c-format
-msgid "NOTE: Depending on the printer model and the printing system up to %d MB of additional software will be installed."
+msgid "You can also decide here whether printers on remote machines should be automatically made available on this machine."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/printerdrake.pm:62
#, c-format
-msgid "Iwpriv command extra arguments"
+msgid "The printers on this machine are available to other computers"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:64
#, c-format
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+msgid "Automatically find available printers on remote machines"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:66
#, c-format
-msgid "Estonian"
+msgid "Printer sharing on hosts/networks: "
msgstr ""
-#: ../../services.pm:1
+#: printer/printerdrake.pm:68
#, c-format
-msgid "Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgid "Custom configuration"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:73 standalone/scannerdrake:548 standalone/scannerdrake:565
#, c-format
-msgid ""
-"Enter your CD Writer device name\n"
-" ex: 0,1,0"
+msgid "No remote machines"
msgstr ""
-#: ../../standalone/draksec:1
+#: printer/printerdrake.pm:83
#, c-format
-msgid "ALL"
+msgid "Additional CUPS servers: "
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/printerdrake.pm:88
#, c-format
-msgid "Add/Del Clients"
+msgid "None"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: printer/printerdrake.pm:90
#, c-format
-msgid "Choose the network interface"
+msgid "To get access to printers on remote CUPS servers in your local network you only need to turn on the \"Automatically find available printers on remote machines\" option; the CUPS servers inform your machine automatically about their printers. All printers currently known to your machine are listed in the \"Remote printers\" section in the main window of Printerdrake. If your CUPS server(s) is/are not in your local network, you have to enter the IP address(es) and optionally the port number(s) here to get the printer information from the server(s)."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: printer/printerdrake.pm:95
#, c-format
-msgid "Select firmware file for the %s"
+msgid "Japanese text printing mode"
msgstr ""
-#: ../../printer/detect.pm:1 ../../printer/detect.pm:1 ../../printer/detect.pm:1 ../../printer/detect.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:96
#, c-format
-msgid "Unknown Model"
+msgid "Turning on this allows to print plain text files in japanese language. Only use this function if you really want to print text in japanese, if it is activated you cannot print accentuated characters in latin fonts any more and you will not be able to adjust the margins, the character size, etc. This setting only affects printers defined on this machine. If you want to print japanese text on a printer set up on a remote machine, you have to activate this function on that remote machine."
msgstr ""
-#: ../../harddrake/data.pm:1
+#: printer/printerdrake.pm:100
#, c-format
-msgid "CD/DVD burners"
+msgid "Automatic correction of CUPS configuration"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:102
#, c-format
msgid ""
-"Partition booted by default\n"
-" (for MS-DOS boot, not for lilo)\n"
-""
+"When this option is turned on, on every startup of CUPS it is automatically made sure that\n"
+"\n"
+"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
+"\n"
+"- if /etc/cups/cupsd.conf is missing, it will be created\n"
+"\n"
+"- when printer information is broadcasted, it does not contain \"localhost\" as the server name.\n"
+"\n"
+"If some of these measures lead to problems for you, turn this option off, but then you have to take care of these points."
msgstr ""
-#: ../../standalone/drakperm:1
+#: printer/printerdrake.pm:124 printer/printerdrake.pm:200
#, c-format
-msgid "Enable \"%s\" to read the file"
+msgid "Sharing of local printers"
msgstr ""
-#: ../../standalone/draksplash:1
+#: printer/printerdrake.pm:125
#, c-format
-msgid "choose image"
+msgid "These are the machines and networks on which the locally connected printer(s) should be available:"
msgstr ""
-#: ../../network/shorewall.pm:1
+#: printer/printerdrake.pm:136
#, c-format
-msgid "Firewalling configuration detected!"
+msgid "Add host/network"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:142
#, c-format
-msgid "Connection name"
+msgid "Edit selected host/network"
msgstr ""
-#: ../../standalone/draksplash:1
+#: printer/printerdrake.pm:151
#, c-format
-msgid ""
-"x coordinate of text box\n"
-"in number of characters"
+msgid "Remove selected host/network"
msgstr ""
-#: ../../fsedit.pm:1
+#: printer/printerdrake.pm:182 printer/printerdrake.pm:192 printer/printerdrake.pm:205 printer/printerdrake.pm:212 printer/printerdrake.pm:243 printer/printerdrake.pm:261
#, c-format
-msgid "You may not be able to install lilo (since lilo doesn't handle a LV on multiple PVs)"
+msgid "IP address of host/network:"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: printer/printerdrake.pm:201
#, c-format
-msgid "Updating package selection"
+msgid "Choose the network or host on which the local printers should be made available:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:208
#, c-format
-msgid "Where do you want to mount the loopback file %s?"
+msgid "Host/network IP address missing."
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: printer/printerdrake.pm:216
#, c-format
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
+"The entered host/network IP is not correct.\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:217 printer/printerdrake.pm:395
#, c-format
-msgid "Use CD-R/DVD-R to backup"
+msgid ""
+"Examples for correct IPs:\n"
+""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:241
#, c-format
-msgid "the number of buttons the mouse has"
+msgid ""
+"This host/network is already in the list, it cannot be added again.\n"
+""
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: printer/printerdrake.pm:311 printer/printerdrake.pm:382
#, c-format
-msgid "Replay"
+msgid "Accessing printers on remote CUPS servers"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:312
#, c-format
-msgid "Backup other files"
+msgid "Add here the CUPS servers whose printers you want to use. You only need to do this if the servers do not broadcast their printer information into the local network."
msgstr ""
-#: ../../install_steps.pm:1
+#: printer/printerdrake.pm:323
#, c-format
-msgid "No floppy drive available"
+msgid "Add server"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:329
#, c-format
-msgid "Backup files are corrupted"
+msgid "Edit selected server"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: printer/printerdrake.pm:338
#, c-format
-msgid "TV norm:"
+msgid "Remove selected server"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:383
#, c-format
-msgid "Cpuid family"
+msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: printer/printerdrake.pm:384
#, c-format
-msgid "32 MB"
+msgid "If no port is given, 631 will be taken as default."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/printerdrake.pm:388
#, c-format
-msgid "type: thin"
+msgid "Server IP missing!"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:394
#, c-format
-msgid "Lithuanian AZERTY (new)"
+msgid ""
+"The entered IP is not correct.\n"
+""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:406 printer/printerdrake.pm:1573
#, c-format
-msgid "yes means the arithmetic coprocessor has an exception vector attached"
+msgid "The port number should be an integer!"
msgstr ""
-#: ../../fsedit.pm:1
+#: printer/printerdrake.pm:417
#, c-format
msgid ""
-"You've selected a software RAID partition as root (/).\n"
-"No bootloader is able to handle this without a /boot partition.\n"
-"Please be sure to add a /boot partition"
+"This server is already in the list, it cannot be added again.\n"
+""
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:428 printer/printerdrake.pm:1594 standalone/drakups:250 standalone/harddrake2:64
#, c-format
-msgid "Other OS (MacOS...)"
+msgid "Port"
msgstr ""
-#: ../../mouse.pm:1
+#: printer/printerdrake.pm:473 printer/printerdrake.pm:536 printer/printerdrake.pm:596 printer/printerdrake.pm:612 printer/printerdrake.pm:695 printer/printerdrake.pm:752 printer/printerdrake.pm:778 printer/printerdrake.pm:1791 printer/printerdrake.pm:1799 printer/printerdrake.pm:1821 printer/printerdrake.pm:1848 printer/printerdrake.pm:1883 printer/printerdrake.pm:1920 printer/printerdrake.pm:1930 printer/printerdrake.pm:2168 printer/printerdrake.pm:2173 printer/printerdrake.pm:2312 printer/printerdrake.pm:2853 printer/printerdrake.pm:3009 printer/printerdrake.pm:3071 printer/printerdrake.pm:3143 printer/printerdrake.pm:3164 printer/printerdrake.pm:3361 printer/printerdrake.pm:3367 printer/printerdrake.pm:3374 printer/printerdrake.pm:3420 printer/printerdrake.pm:3460 printer/printerdrake.pm:3472 printer/printerdrake.pm:3483 printer/printerdrake.pm:3492 printer/printerdrake.pm:3505 printer/printerdrake.pm:3575 printer/printerdrake.pm:3626 printer/printerdrake.pm:3690 printer/printerdrake.pm:3947 printer/printerdrake.pm:3990 printer/printerdrake.pm:4136 printer/printerdrake.pm:4194 printer/printerdrake.pm:4223 standalone/printerdrake:62 standalone/printerdrake:82 standalone/printerdrake:512
#, c-format
-msgid "To activate the mouse,"
+msgid "Printerdrake"
msgstr ""
-#: ../../standalone/logdrake:1
+#: printer/printerdrake.pm:474
#, c-format
-msgid "Alert configuration"
+msgid "Restarting CUPS..."
msgstr ""
-#: ../../install_interactive.pm:1
+#: printer/printerdrake.pm:495
#, c-format
-msgid "Bringing up the network"
+msgid "Select Printer Connection"
msgstr ""
-#: ../../common.pm:1
+#: printer/printerdrake.pm:496
#, c-format
-msgid "Screenshots will be available after install in %s"
+msgid "How is the printer connected?"
msgstr ""
-#: ../../help.pm:1
+#: printer/printerdrake.pm:498
#, c-format
msgid ""
-"More than one Microsoft partition has been detected on your hard drive.\n"
-"Please choose which 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:\")."
+"Printers on remote CUPS servers do not need to be configured here; these printers will be automatically detected."
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:506
#, c-format
-msgid "Tanzania"
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:536
#, c-format
-msgid "Computing FAT filesystem bounds"
+msgid "Checking your system..."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:551
#, c-format
-msgid ""
-"\n"
-"Backup Sources: \n"
-""
+msgid "and one unknown printer"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:553
#, c-format
-msgid "custom"
+msgid "and %d unknown printers"
msgstr ""
-#: ../../standalone/logdrake:1
+#: printer/printerdrake.pm:557
#, c-format
-msgid "Content of the file"
+msgid ""
+"The following printers\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:559
#, c-format
-msgid "Authentication LDAP"
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: printer/printerdrake.pm:560
#, c-format
-msgid "in order to keep %s"
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"is directly connected to your system"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: printer/printerdrake.pm:564
#, c-format
-msgid "Let me pick any driver"
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: printer/printerdrake.pm:565
#, c-format
-msgid "transmitted"
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:568
#, c-format
-msgid "Palestine"
+msgid "There are no printers found which are directly connected to your machine"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:571
#, c-format
msgid ""
-"RAID md%s\n"
+" (Make sure that all your printers are connected and turned on).\n"
""
msgstr ""
-#: ../../modules/parameters.pm:1
+#: printer/printerdrake.pm:584
#, c-format
-msgid "%d comma separated strings"
+msgid ""
+"Do you want to enable printing on the printers mentioned above or on printers in the local network?\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: printer/printerdrake.pm:585
#, c-format
-msgid "Here is the full list of keyboards available"
+msgid ""
+"Do you want to enable printing on printers in the local network?\n"
+""
msgstr ""
-#: ../../standalone/draksplash:1
+#: printer/printerdrake.pm:587
#, c-format
-msgid "Theme name"
+msgid ""
+"Do you want to enable printing on the printers mentioned above?\n"
+""
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/harddrake2:1 ../../standalone/logdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: printer/printerdrake.pm:588
#, c-format
-msgid "/_Help"
+msgid ""
+"Are you sure that you want to set up printing on this machine?\n"
+""
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: printer/printerdrake.pm:589
#, c-format
-msgid "Choosing an arbitrary driver"
+msgid "NOTE: Depending on the printer model and the printing system up to %d MB of additional software will be installed."
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: printer/printerdrake.pm:613
#, c-format
-msgid ""
-"Your USB key doesn't have any valid Windows (FAT) partitions.\n"
-"We need one to continue (beside, it's more standard so that you\n"
-"will be able to move and access your files from machines\n"
-"running Windows). Please plug in an USB key containing a\n"
-"Windows partition instead.\n"
-"\n"
-"\n"
-"You may also proceed without an USB key - you'll still be\n"
-"able to use Mandrake Move as a normal live Mandrake\n"
-"Operating System."
+msgid "Searching for new printers..."
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:697
#, c-format
-msgid "Cook Islands"
+msgid "Configuring printer ..."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: printer/printerdrake.pm:698 printer/printerdrake.pm:753 printer/printerdrake.pm:3484
#, c-format
-msgid "Here you can choose whether the scanners connected to this machine should be accessable by remote machines and by which remote machines."
+msgid "Configuring printer \"%s\"..."
msgstr ""
-#: ../../standalone/draksplash:1
+#: printer/printerdrake.pm:718
#, c-format
-msgid "the width of the progress bar"
+msgid "("
msgstr ""
-#: ../../fs.pm:1 ../../fs.pm:1
+#: printer/printerdrake.pm:719
#, c-format
-msgid "Formatting partition %s"
+msgid " on "
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:720 standalone/scannerdrake:124
#, c-format
-msgid "Hostname required"
+msgid ")"
msgstr ""
-#: ../../standalone/drakfont:1
+#: printer/printerdrake.pm:725 printer/printerdrake.pm:2320
#, c-format
-msgid "Unselect fonts installed"
+msgid "Printer model selection"
msgstr ""
-#: ../../mouse.pm:1
+#: printer/printerdrake.pm:726 printer/printerdrake.pm:2321
#, c-format
-msgid "Wheel"
+msgid "Which printer model do you have?"
msgstr ""
-#: ../../standalone/drakbug:1
+#: printer/printerdrake.pm:727
#, c-format
-msgid "Submit kernel version"
+msgid ""
+"\n"
+"\n"
+"Printerdrake could not determine which model your printer %s is. Please choose the correct model from the list."
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1 ../../ugtk2.pm:1 ../../ugtk2.pm:1 ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/gtk.pm:1 ../../interactive/http.pm:1 ../../interactive/http.pm:1 ../../interactive/newt.pm:1 ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakboot:1 ../../standalone/drakclock:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1 ../../standalone/drakfloppy:1 ../../standalone/drakfont:1 ../../standalone/drakperm:1 ../../standalone/drakperm:1 ../../standalone/draksec:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/logdrake:1 ../../standalone/mousedrake:1 ../../standalone/net_monitor:1
+#: printer/printerdrake.pm:730 printer/printerdrake.pm:2325
#, c-format
-msgid "Cancel"
+msgid "If your printer is not listed, choose a compatible (see printer manual) or a similar one."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: printer/printerdrake.pm:779 printer/printerdrake.pm:3473 printer/printerdrake.pm:3627 printer/printerdrake.pm:3948 printer/printerdrake.pm:3991 printer/printerdrake.pm:4195
#, c-format
-msgid "Searching for configured scanners ..."
+msgid "Configuring applications..."
msgstr ""
-#: ../../harddrake/data.pm:1
+#: printer/printerdrake.pm:815 printer/printerdrake.pm:827 printer/printerdrake.pm:885 printer/printerdrake.pm:1778 printer/printerdrake.pm:3707 printer/printerdrake.pm:3888
#, c-format
-msgid "Videocard"
+msgid "Add a new printer"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:816
#, c-format
msgid ""
-"\tBackups use tar and bzip2\n"
-""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives you access to all available printer drivers, driver options, and printer connection types."
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#: printer/printerdrake.pm:829
#, c-format
-msgid "Remove Selected"
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected. Also your network printer(s) and your Windows machines must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network and/or Windows-hosted printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:838
#, c-format
-msgid "/Autodetect _modems"
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this computer.\n"
+"\n"
+"Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:846
#, c-format
-msgid "Remove printer"
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected. Also your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-detection of only the printers connected to this machine. So turn off the auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:855
#, c-format
-msgid "View Last Log"
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: printer/printerdrake.pm:864
#, c-format
-msgid "Which services would you like to allow the Internet to connect to?"
+msgid "Auto-detect printers connected to this machine"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: printer/printerdrake.pm:867
#, c-format
-msgid "Connection Type"
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: printer/printerdrake.pm:870
+#, c-format
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
-#: ../../standalone/logdrake:1
+#: printer/printerdrake.pm:886
#, c-format
msgid ""
-"Welcome to the mail configuration utility.\n"
"\n"
-"Here, you'll be able to set up the alert system.\n"
-""
+"Congratulations, your printer is now installed and configured!\n"
+"\n"
+"You can print using the \"Print\" command of your application (usually in the \"File\" menu).\n"
+"\n"
+"If you want to add, remove, or rename a printer, or if you want to change the default option settings (paper input tray, printout quality, ...), select \"Printer\" in the \"Hardware\" section of the Mandrake Control Center."
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakperm:1
+#: printer/printerdrake.pm:921 printer/printerdrake.pm:1051 printer/printerdrake.pm:1267 printer/printerdrake.pm:1507
#, c-format
-msgid "Other"
+msgid "Printer auto-detection"
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../harddrake/v4l.pm:1 ../../standalone/drakfloppy:1 ../../standalone/drakfloppy:1
+#: printer/printerdrake.pm:943
#, c-format
-msgid "Default"
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: printer/printerdrake.pm:945
#, c-format
-msgid "Button 2 Emulation"
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../standalone/drakbug:1
+#: printer/printerdrake.pm:949
#, c-format
-msgid "Please enter a package name."
+msgid "Detected %s"
msgstr ""
-#: ../../security/l10n.pm:1
+#: printer/printerdrake.pm:953 printer/printerdrake.pm:976 printer/printerdrake.pm:993
#, c-format
-msgid "Run chkrootkit checks"
+msgid "Printer on parallel port #%s"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
+#: printer/printerdrake.pm:957
#, c-format
-msgid "type1inst building"
+msgid "Network printer \"%s\", port %s"
msgstr ""
-#: ../../standalone/drakfont:1
+#: printer/printerdrake.pm:959
#, c-format
-msgid "Abiword"
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../standalone/draksplash:1 ../../standalone/draksplash:1
+#: printer/printerdrake.pm:1038
#, c-format
-msgid "choose image file"
+msgid "Local Printer"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: printer/printerdrake.pm:1039
#, c-format
-msgid "X server"
+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 ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:1043
#, c-format
-msgid "Domain Admin User Name"
+msgid "You must enter a device or file name!"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: printer/printerdrake.pm:1052
#, c-format
-msgid "There was an error while scanning for TV channels"
+msgid "No printer found!"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:1060
#, c-format
-msgid "US keyboard (international)"
+msgid "Local Printers"
msgstr ""
-#: ../../standalone/drakbug:1
+#: printer/printerdrake.pm:1061
#, c-format
-msgid "Not installed"
+msgid "Available printers"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:1065 printer/printerdrake.pm:1074
#, c-format
-msgid "Both Alt keys simultaneously"
+msgid "The following printer was auto-detected. "
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/printerdrake.pm:1067
#, c-format
-msgid "LAN connection"
+msgid "If it is not the one you want to configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../standalone/logdrake:1
+#: printer/printerdrake.pm:1068
#, c-format
-msgid "/File/-"
+msgid "Alternatively, you can specify a device name/file name in the input line"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:1069 printer/printerdrake.pm:1078
#, c-format
-msgid "Italian"
+msgid "Here is a list of all auto-detected printers. "
msgstr ""
-#: ../../interactive.pm:1
+#: printer/printerdrake.pm:1071
#, c-format
-msgid "Basic"
+msgid "Please choose the printer you want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../install_messages.pm:1
+#: printer/printerdrake.pm:1072
#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgid "Please choose the printer to which the print jobs should go or enter a device name/file name in the input line"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:1076
#, c-format
-msgid "Honduras"
+msgid "The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1
+#: printer/printerdrake.pm:1077
#, c-format
-msgid "pdq"
+msgid "Currently, no alternative possibility is available"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:1080
#, c-format
-msgid "Card IO"
+msgid "Please choose the printer you want to set up. The configuration of the printer will work fully automatically. If your printer was not correctly detected or if you prefer a customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: printer/printerdrake.pm:1081
#, c-format
-msgid "Samba server"
+msgid "Please choose the printer to which the print jobs should go."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:1083
#, c-format
-msgid ""
-"\n"
-"This special Bootstrap\n"
-"partition is for\n"
-"dual-booting your system.\n"
-""
+msgid "Please choose the port that your printer is connected to or enter a device name/file name in the input line"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: printer/printerdrake.pm:1084
#, c-format
-msgid "Please choose for each step whether it will replay like your install, or it will be manual"
+msgid "Please choose the port that your printer is connected to."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: printer/printerdrake.pm:1086
#, c-format
-msgid "You can also decide here whether scanners on remote machines should be made available on this machine."
+msgid " (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:1090
#, c-format
-msgid ""
-"\t-Network by FTP.\n"
-""
+msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../security/l10n.pm:1
+#: printer/printerdrake.pm:1109 standalone/drakups:64
#, c-format
-msgid "Reports check result to tty"
+msgid "Manual configuration"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:1159
#, c-format
-msgid "You must enter a device or file name!"
+msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: printer/printerdrake.pm:1160
#, c-format
-msgid "/_Quit"
+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 ""
-#: ../../Xconfig/various.pm:1
+#: printer/printerdrake.pm:1161
#, c-format
-msgid ""
-"Graphics memory: %s kB\n"
-""
+msgid "Remote host name"
msgstr ""
-#: ../../standalone.pm:1
+#: printer/printerdrake.pm:1162
#, c-format
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-""
+msgid "Remote printer name"
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:1165
#, c-format
-msgid "access to compilation tools"
+msgid "Remote host name missing!"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: printer/printerdrake.pm:1169
#, c-format
-msgid "Global statistics"
+msgid "Remote printer name missing!"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:1191 printer/printerdrake.pm:1705
#, c-format
-msgid "Please select data to restore..."
+msgid "Detected model: %s %s"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: printer/printerdrake.pm:1267 printer/printerdrake.pm:1507
#, c-format
-msgid ""
-"If you plan to use aboot, be carefull to leave a free space (2048 sectors is enough)\n"
-"at the beginning of the disk"
+msgid "Scanning network..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:1278 printer/printerdrake.pm:1299
#, c-format
-msgid "Standard test page"
+msgid ", printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../standalone/drakclock:1
+#: printer/printerdrake.pm:1281 printer/printerdrake.pm:1302
#, c-format
-msgid "Time Zone"
+msgid "Printer \"%s\" on server \"%s\""
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:1323
#, c-format
-msgid "Create"
+msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:1324
#, c-format
-msgid "What"
+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 ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: printer/printerdrake.pm:1325
#, c-format
-msgid "There was an error ordering packages:"
+msgid " If the desired printer was auto-detected, simply choose it from the list and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:1327
#, c-format
-msgid "Bulgarian (BDS)"
+msgid "SMB server host"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/printerdrake.pm:1328
#, c-format
-msgid "Disable Server"
+msgid "SMB server IP"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:1329
#, c-format
-msgid "Filesystem encryption key"
+msgid "Share name"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:1332
#, c-format
-msgid "Gujarati"
+msgid "Workgroup"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/printerdrake.pm:1334
#, c-format
-msgid ""
-" While you can use a pool of IP addresses, rather than setup a specific entry for\n"
-" a client machine, using a fixed address scheme facilitates using the functionality\n"
-" of client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-" Note: The '#type' entry is only used by drakTermServ. Clients can either be 'thin'\n"
-" or 'fat'. Thin clients run most software on the server via xdmcp, while fat clients run \n"
-" most software on the client machine. A special inittab, %s is\n"
-" written for thin clients. System config files xdm-config, kdmrc, and gdm.conf are \n"
-" modified if thin clients are used, to enable xdmcp. Since there are security issues in \n"
-" using xdmcp, hosts.deny and hosts.allow are modified to limit access to the local\n"
-" subnet.\n"
-"\t\t\t\n"
-" Note: The '#hdw_config' entry is also only used by drakTermServ. Clients can either \n"
-" be 'true' or 'false'. 'true' enables root login at the client machine and allows local \n"
-" hardware configuration of sound, mouse, and X, using the 'drak' tools. This is enabled \n"
-" by creating separate config files associated with the client's IP address and creating \n"
-" read/write mount points to allow the client to alter the file. Once you are satisfied \n"
-" with the configuration, you can remove root login privileges from the client.\n"
-"\t\t\t\n"
-" Note: You must stop/start the server after adding or changing clients."
+msgid "Auto-detected"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: printer/printerdrake.pm:1344
#, c-format
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
+msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/printerdrake.pm:1348
#, c-format
-msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict@mandrakesoft.com\n"
-"\n"
-""
+msgid "Samba share name missing!"
msgstr ""
-#: ../../standalone/draksplash:1
+#: printer/printerdrake.pm:1354
#, c-format
-msgid "Save theme"
+msgid "SECURITY WARNING!"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:1355
#, c-format
-msgid "Brazil"
+msgid ""
+"You are about to set up printing to a Windows account with password. Due to a fault in the architecture of the Samba client software the password is put in clear text into the command line of the Samba client used to transmit the print job to the Windows server. So it is possible for every user on this machine to display the password on the screen by issuing commands as \"ps auxwww\".\n"
+"\n"
+"We recommend to make use of one of the following alternatives (in all cases you have to make sure that only machines from your local network have access to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account or a special account dedicated for printing. Do not remove the password protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD protocol. Then set up printing from this machine with the \"%s\" connection type in Printerdrake.\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: printer/printerdrake.pm:1365
#, c-format
-msgid "Auto Install"
+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 ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: printer/printerdrake.pm:1368
#, c-format
-msgid "Network Configuration Wizard"
+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 ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:1440
#, c-format
-msgid "Removable media automounting"
+msgid "NetWare Printer Options"
msgstr ""
-#: ../../services.pm:1
+#: printer/printerdrake.pm:1441
#, c-format
-msgid "Printing"
+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 ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:1442
#, c-format
-msgid "Enter the directory to save:"
+msgid "Printer Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:1443
#, c-format
-msgid "There are no printers found which are directly connected to your machine"
+msgid "Print Queue Name"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:1448
#, c-format
-msgid "Create a new partition"
+msgid "NCP server name missing!"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../harddrake/sound.pm:1 ../../standalone/drakups:1
+#: printer/printerdrake.pm:1452
#, c-format
-msgid "Driver:"
+msgid "NCP queue name missing!"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:1518 printer/printerdrake.pm:1538
#, c-format
-msgid "unknown"
+msgid ", host \"%s\", port %s"
msgstr ""
-#: ../../install_interactive.pm:1
+#: printer/printerdrake.pm:1521 printer/printerdrake.pm:1541
#, c-format
-msgid "Use fdisk"
+msgid "Host \"%s\", port %s"
msgstr ""
-#: ../../standalone/logdrake:1
+#: printer/printerdrake.pm:1562
#, c-format
-msgid "Services settings"
+msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../mouse.pm:1
+#: printer/printerdrake.pm:1564
#, c-format
-msgid "MOVE YOUR WHEEL!"
+msgid "Choose one of the auto-detected printers from the list or enter the hostname or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
-#: ../../standalone/net_monitor:1 ../../standalone/net_monitor:1
+#: printer/printerdrake.pm:1565
#, c-format
-msgid "sent: "
+msgid "To print to a TCP or socket printer, you need to provide the host name or IP of the printer and optionally the port number (default is 9100). On HP JetDirect servers the port number is usually 9100, on other servers it can vary. See the manual of your hardware."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/printerdrake.pm:1569
#, c-format
-msgid "Automatic IP"
+msgid "Printer host name or IP missing!"
msgstr ""
-#: ../../help.pm:1
+#: printer/printerdrake.pm:1592
#, c-format
-msgid ""
-"There you are. Installation is now complete and your GNU/Linux system is\n"
-"ready to use. Just click \"%s\" to reboot the system. The first thing you\n"
-"should see after your computer has finished doing its hardware tests is the\n"
-"bootloader menu, giving you the choice of which operating system to start.\n"
-"\n"
-"The \"%s\" button shows two more buttons to:\n"
-"\n"
-" * \"%s\": to create an installation floppy disk that will automatically\n"
-"perform a whole installation without the help of an operator, similar to\n"
-"the installation you just configured.\n"
-"\n"
-" Note that two different options are available after clicking the button:\n"
-"\n"
-" * \"%s\". This is a partially automated installation. The partitioning\n"
-"step is the only interactive procedure.\n"
-"\n"
-" * \"%s\". Fully automated installation: the hard disk is completely\n"
-"rewritten, all data is lost.\n"
-"\n"
-" This feature is very handy when installing a number of similar machines.\n"
-"See the Auto install section on our web site for more information.\n"
-"\n"
-" * \"%s\"(*): saves a list of the packages selected in this installation.\n"
-"To use this selection with another installation, insert the floppy and\n"
-"start the installation. At the prompt, press the [F1] key and type >>linux\n"
-"defcfg=\"floppy\" <<.\n"
-"\n"
-"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
-"\"mformat a:\")"
+msgid "Printer host name or IP"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:1640 printer/printerdrake.pm:1642
#, c-format
-msgid "Moldova"
+msgid "Printer Device URI"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#: printer/printerdrake.pm:1641
#, c-format
-msgid "Kensington Thinking Mouse"
+msgid "You can specify directly the URI to access the printer. The URI must fulfill either the CUPS or the Foomatic specifications. Note that not all URI types are supported by all the spoolers."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:1659
#, c-format
-msgid "Configuration of a remote printer"
+msgid "A valid URI must be entered!"
msgstr ""
-#: ../../standalone/drakups:1
+#: printer/printerdrake.pm:1740
#, c-format
-msgid "Welcome to the UPS configuration tools"
+msgid "Pipe into command"
msgstr ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
+#: printer/printerdrake.pm:1741
#, c-format
-msgid "An online platform to respond to enterprise support needs."
+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 ""
-#: ../../network/netconnect.pm:1
+#: printer/printerdrake.pm:1742
#, c-format
-msgid "URL should begin with 'ftp:' or 'http:'"
+msgid "Command line"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:1746
#, c-format
-msgid "Oriya"
+msgid "A command line must be entered!"
msgstr ""
-#: ../../standalone/drakperm:1
+#: printer/printerdrake.pm:1779
#, c-format
-msgid "Add a new rule at the end"
+msgid "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 with scanner, DeskJet 450, Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
msgstr ""
-#: ../../standalone/drakboot:1
+#: printer/printerdrake.pm:1792
#, c-format
-msgid "LiLo and Bootsplash themes installation successful"
+msgid "Installing HPOJ package..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:1800 printer/printerdrake.pm:1884
#, c-format
-msgid "You can also decide here whether printers on remote machines should be automatically made available on this machine."
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../modules/interactive.pm:1
+#: printer/printerdrake.pm:1822
#, 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''"
+msgid "Installing SANE packages..."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:1849
#, c-format
-msgid "Quit without writing the partition table?"
+msgid "Installing mtools packages..."
msgstr ""
-#: ../../mouse.pm:1
+#: printer/printerdrake.pm:1864
#, c-format
-msgid "Genius NetScroll"
+msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../standalone.pm:1
+#: printer/printerdrake.pm:1872
#, c-format
-msgid "Installing packages..."
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:1921
#, c-format
-msgid "On Hard Drive"
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../standalone/drakups:1
+#: printer/printerdrake.pm:1930 printer/printerdrake.pm:2169 printer/printerdrake.pm:2313
#, c-format
-msgid "Access Control Lists"
+msgid "Reading printer database..."
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:2135
#, c-format
-msgid "Dutch"
+msgid "Enter Printer Name and Comments"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:2139 printer/printerdrake.pm:3128
#, c-format
-msgid "Angola"
+msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:2145 printer/printerdrake.pm:3133
#, c-format
msgid ""
-"The following packages need to be installed:\n"
-""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../standalone/drakups:1
+#: printer/printerdrake.pm:2154
#, c-format
-msgid "The driver that manage your ups"
+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 ""
-#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#: printer/printerdrake.pm:2155
#, c-format
-msgid "Custom"
+msgid "Name of printer"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:2156 standalone/drakconnect:352 standalone/harddrake2:40 standalone/printerdrake:209 standalone/printerdrake:216
#, c-format
-msgid "Latvia"
+msgid "Description"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:2157 standalone/printerdrake:209 standalone/printerdrake:216
#, c-format
-msgid "File is already used by another loopback, choose another one"
+msgid "Location"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:2174
#, c-format
-msgid "Read-only"
+msgid "Preparing printer database..."
msgstr ""
-#: ../../security/help.pm:1
+#: printer/printerdrake.pm:2292
#, c-format
-msgid ""
-"Enable/Disable name resolution spoofing protection. If\n"
-"\"alert\" is true, also reports to syslog."
+msgid "Your printer model"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: printer/printerdrake.pm:2293
#, c-format
-msgid "No known driver"
+msgid ""
+"Printerdrake has compared the model name resulting from the printer auto-detection with the models listed in its printer database to find the best match. This choice can be wrong, especially when your printer is not listed at all in the database. So check whether the choice is correct and click \"The model is correct\" if so and if not, click \"Select model manually\" so that you can choose your printer model manually on the next screen.\n"
+"\n"
+"For your printer Printerdrake has found:\n"
+"\n"
+"%s"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: printer/printerdrake.pm:2298 printer/printerdrake.pm:2301
#, c-format
-msgid "1 MB"
+msgid "The model is correct"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:2299 printer/printerdrake.pm:2300 printer/printerdrake.pm:2303
#, c-format
-msgid "If it is not the one you want to configure, enter a device name/file name in the input line"
+msgid "Select model manually"
msgstr ""
-#: ../../standalone/draksound:1
+#: printer/printerdrake.pm:2322
#, c-format
msgid ""
-"No Sound Card has been detected on your machine. Please verify that a Linux-supported Sound Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"Please check whether Printerdrake did the auto-detection of your printer model correctly. Find the correct model in the list when a wrong model or \"Raw printer\" is highlighted."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:2426
#, c-format
-msgid "Configure Local Area Network..."
+msgid "OKI winprinter configuration"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: printer/printerdrake.pm:2427
#, c-format
msgid ""
-"The USB key seems to have write protection enabled. Please\n"
-"unplug it, remove write protection, and then plug it again."
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when connected to the first parallel port. When your printer is connected to another port or to a print server box please connect the printer to the first parallel port before you print a test page. Otherwise the printer will not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../services.pm:1
+#: printer/printerdrake.pm:2451 printer/printerdrake.pm:2480
#, c-format
-msgid "Launch the sound system on your machine"
+msgid "Lexmark inkjet configuration"
msgstr ""
-#: ../../security/l10n.pm:1
+#: printer/printerdrake.pm:2452
#, c-format
-msgid "Verify checksum of the suid/sgid files"
+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 ""
-#: ../../security/l10n.pm:1
+#: printer/printerdrake.pm:2481
#, c-format
-msgid "Run some checks against the rpm database"
+msgid "To be able to print with your Lexmark inkjet and this configuration, you need the inkjet printer drivers provided by Lexmark (http://www.lexmark.com/). Click on the \"Drivers\" link. Then choose your model and afterwards \"Linux\" as operating system. The drivers come as RPM packages or shell scripts with interactive graphical installation. You do not need to do this configuration by the graphical frontends. Cancel directly after the license agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and adjust the head alignment settings with this program."
msgstr ""
-#: ../../standalone/drakperm:1
+#: printer/printerdrake.pm:2484
#, c-format
-msgid "Execute"
+msgid "Firmware-Upload for HP LaserJet 1000"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:2597
#, c-format
-msgid "Preparing printer database..."
+msgid ""
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if available) and also the hardware configuration of laser printers (memory, duplex unit, extra trays) are set correctly. Note that with a very high printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:2722
#, c-format
-msgid "Information"
+msgid "Printer default settings"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: printer/printerdrake.pm:2729
#, c-format
-msgid "No network card"
+msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../mouse.pm:1
+#: printer/printerdrake.pm:2733
#, c-format
-msgid "3 buttons"
+msgid "Option %s must be a number!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: printer/printerdrake.pm:2737
#, c-format
-msgid "Which filesystem do you want?"
+msgid "Option %s out of range!"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:2788
#, c-format
-msgid "Malta"
+msgid ""
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:2803
#, c-format
-msgid "Detailed information"
+msgid "Test pages"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:2804
#, c-format
msgid ""
-"Printer default settings\n"
-"\n"
-"You should make sure that the page size and the ink type/printing mode (if available) and also the hardware configuration of laser printers (memory, duplex unit, extra trays) are set correctly. Note that with a very high printout quality/resolution printing can get substantially slower."
-msgstr ""
-
-#: ../../install_any.pm:1
-#, c-format
-msgid "This floppy is not FAT formatted"
+"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 ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:2808
#, c-format
-msgid "This option will save files that have changed. Exact behavior depends on whether incremental or differential mode is used."
+msgid "No test pages"
msgstr ""
-#: ../../Xconfig/main.pm:1
+#: printer/printerdrake.pm:2809
#, c-format
-msgid "Graphic Card"
+msgid "Print"
msgstr ""
-#: ../../install_interactive.pm:1
+#: printer/printerdrake.pm:2834
#, c-format
-msgid "Resizing Windows partition"
+msgid "Standard test page"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:2837
#, c-format
-msgid "Cameroon"
+msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:2840
#, c-format
-msgid "Provider dns 1 (optional)"
+msgid "Alternative test page (A4)"
msgstr ""
-#: ../../install_interactive.pm:1
+#: printer/printerdrake.pm:2842
#, c-format
-msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
+msgid "Photo test page"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:2846
#, c-format
-msgid "Saami (swedish/finnish)"
+msgid "Do not print any test page"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakbackup:1 ../../standalone/drakbug:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/net_monitor:1 ../../standalone/printerdrake:1
+#: printer/printerdrake.pm:2854 printer/printerdrake.pm:3010
#, c-format
-msgid "Close"
+msgid "Printing test page(s)..."
msgstr ""
-#: ../../help.pm:1
+#: printer/printerdrake.pm:2879
#, c-format
msgid ""
-"\"%s\": check the current country selection. If you are not in this\n"
-"country, click on the \"%s\" button and choose another one. If your country\n"
-"is not in the first list shown, click the \"%s\" button to get the complete\n"
-"country list."
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "Calendar"
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:2883
#, c-format
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "To use a remote lpd printer, you need to supply the hostname of the printer server and the printer name on that server."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Iceland"
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+""
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:2890
#, c-format
-msgid "Network & Internet Configuration"
+msgid "Did it work properly?"
msgstr ""
-#: ../../common.pm:1
+#: printer/printerdrake.pm:2911 printer/printerdrake.pm:4074
#, c-format
-msgid "consolehelper missing"
+msgid "Raw printer"
msgstr ""
-#: ../../services.pm:1
+#: printer/printerdrake.pm:2941
#, c-format
-msgid "stopped"
+msgid ""
+"To print a file from the command line (terminal window) you can either use the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or \"kprinter <file>\". The graphical tools allow you to choose the printer and to modify the option settings easily.\n"
+""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:2943
#, c-format
-msgid "Whether the FPU has an irq vector"
+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 ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: printer/printerdrake.pm:2946 printer/printerdrake.pm:2963 printer/printerdrake.pm:2973
#, c-format
-msgid "Ext2"
+msgid ""
+"\n"
+"The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../ugtk2.pm:1
+#: printer/printerdrake.pm:2949 printer/printerdrake.pm:2989
#, c-format
-msgid "Expand Tree"
+msgid ""
+"To know about the options available for the current printer read either the list shown below or click on the \"Print option list\" button.%s%s%s\n"
+"\n"
+""
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: printer/printerdrake.pm:2953
#, c-format
msgid ""
-"The old \"%s\" driver is blacklisted.\n"
-"\n"
-"It has been reported to oops the kernel on unloading.\n"
+"Here is a list of the available printing options for the current printer:\n"
"\n"
-"The new \"%s\" driver'll only be used on next bootstrap."
+""
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:2958 printer/printerdrake.pm:2968
#, c-format
-msgid "Expert Mode"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s <file>\".\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:2960 printer/printerdrake.pm:2970 printer/printerdrake.pm:2980
#, c-format
-msgid "Printer options"
+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 ""
-#: ../../standalone/drakgw:1
+#: printer/printerdrake.pm:2965 printer/printerdrake.pm:2975
#, c-format
-msgid "Local Network adress"
+msgid "To get a list of the options available for the current printer click on the \"Print option list\" button."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:2978
#, c-format
-msgid "Backup your System files. (/etc directory)"
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s <file>\" or \"%s <file>\".\n"
+""
msgstr ""
-#: ../../security/help.pm:1
+#: printer/printerdrake.pm:2982
#, c-format
-msgid "Set the user umask."
+msgid ""
+"You can also use the graphical interface \"xpdq\" for setting options and handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an icon on the desktop, labeled with \"STOP Printer!\", which stops all print jobs immediately when you click it. This is for example useful for paper jams.\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: printer/printerdrake.pm:2986
#, c-format
msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been updated after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
"\n"
-"Do you want to install the updates ?"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\".\n"
+""
msgstr ""
-#: ../../standalone/logdrake:1
+#: printer/printerdrake.pm:2996
#, c-format
-msgid "Samba Server"
+msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr ""
-#: ../../standalone/drakxtv:1
+#: printer/printerdrake.pm:2997
#, c-format
-msgid "Australian Optus cable TV"
+msgid "Printing/Scanning on \"%s\""
msgstr ""
-#: ../../install_steps_newt.pm:1
+#: printer/printerdrake.pm:2999
#, c-format
-msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgid "Printing/Photo Card Access on \"%s\""
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/printerdrake.pm:3000
#, c-format
-msgid "Subnet:"
+msgid "Printing on the printer \"%s\""
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:3003 printer/printerdrake.pm:3006 printer/printerdrake.pm:3007 printer/printerdrake.pm:3008 printer/printerdrake.pm:4061 standalone/drakTermServ:324 standalone/drakbackup:4683 standalone/drakbug:177 standalone/drakfont:565 standalone/drakfont:711 standalone/net_monitor:111 standalone/printerdrake:505
#, c-format
-msgid "Zimbabwe"
+msgid "Close"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:3006
#, c-format
-msgid "When"
+msgid "Print option list"
msgstr ""
-#: ../../network/adsl.pm:1
+#: printer/printerdrake.pm:3027
#, c-format
msgid ""
-"You need the Alcatel microcode.\n"
-"Download it at:\n"
-"%s\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"Your multi-function device was configured automatically to be able to scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the scanner when you have more than one) from the command line or with the graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, you can also scan by choosing the appropriate point in the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command line to get more information.\n"
+"\n"
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:3050
#, c-format
-msgid "Hour"
+msgid "Your printer was configured automatically to give you access to the photo card drives from your PC. Now you can access your photo cards using the graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> \"MTools File Manager\") or the command line utilities \"mtools\" (enter \"man mtools\" on the command line for more info). You find the card's file system under the drive letter \"p:\", or subsequent drive letters when you have more than one HP printer with photo card drives. In \"MtoolsFM\" you can switch between drive letters with the field at the upper-right corners of the file lists."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:3072 printer/printerdrake.pm:3461
#, c-format
-msgid "Second DNS Server (optional)"
+msgid "Reading printer data..."
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:3092 printer/printerdrake.pm:3119 printer/printerdrake.pm:3154
#, c-format
-msgid "Finland"
+msgid "Transfer printer configuration"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: printer/printerdrake.pm:3093
#, c-format
msgid ""
-"Color depth: %s\n"
+"You can copy the printer configuration which you have done for the spooler %s to %s, your current spooler. All the configuration data (printer name, description, location, connection type, and default option settings) is overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
""
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: printer/printerdrake.pm:3096
#, c-format
-msgid "You can't unselect this package. It must be upgraded"
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the data into a free-formed command.\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: printer/printerdrake.pm:3098
#, c-format
-msgid "Loading from floppy"
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP printers.\n"
+""
msgstr ""
-#: ../../standalone/drakclock:1
+#: printer/printerdrake.pm:3100
#, c-format
-msgid "Timezone - DrakClock"
+msgid ""
+"LPD and LPRng do not support IPP printers.\n"
+""
msgstr ""
-#: ../../standalone/drakups:1
+#: printer/printerdrake.pm:3102
#, c-format
-msgid "DrakUPS"
+msgid "In addition, queues not created with this program or \"foomatic-configure\" cannot be transferred."
msgstr ""
-#: ../../security/help.pm:1
+#: printer/printerdrake.pm:3103
#, c-format
-msgid "Enable/Disable the logging of IPv4 strange packets."
+msgid ""
+"\n"
+"Also printers configured with the PPD files provided by their manufacturers or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:3104
#, c-format
-msgid "Slovenia"
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
-#: ../../standalone/mousedrake:1
+#: printer/printerdrake.pm:3107
#, c-format
-msgid "Mouse test"
+msgid "Do not transfer printers"
msgstr ""
-#: ../../standalone/drakperm:1
+#: printer/printerdrake.pm:3108 printer/printerdrake.pm:3124
#, c-format
-msgid ""
-"Drakperm is used to see files to use in order to fix permissions, owners, and groups via msec.\n"
-"You can also edit your own rules which will owerwrite the default rules."
+msgid "Transfer"
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:3120
#, c-format
msgid ""
-"Enter a user\n"
-"%s"
+"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 ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:3141
#, c-format
-msgid "- PCI and USB devices: this lists the vendor, device, subvendor and subdevice PCI/USB ids"
+msgid "New printer name"
msgstr ""
-#: ../../standalone/draksplash:1
+#: printer/printerdrake.pm:3144
#, c-format
-msgid "ProgressBar color selection"
+msgid "Transferring %s..."
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:3155
#, c-format
-msgid ""
-"Here are the entries on your boot menu so far.\n"
-"You can create additional entries or change the existing ones."
+msgid "You have transferred your former default printer (\"%s\"), Should it be also the default printer under the new printing system %s?"
msgstr ""
-#: ../../help.pm:1
+#: printer/printerdrake.pm:3165
#, c-format
-msgid "/dev/hda"
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../help.pm:1
+#: printer/printerdrake.pm:3173 printer/printerdrake.pm:3251 printer/printerdrake.pm:3263
#, c-format
-msgid "/dev/hdb"
+msgid "Configuration of a remote printer"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/printerdrake.pm:3174
#, c-format
-msgid "Iwspy command extra arguments"
+msgid "Starting network..."
msgstr ""
-#: ../../standalone/drakbug:1
+#: printer/printerdrake.pm:3215 printer/printerdrake.pm:3219 printer/printerdrake.pm:3221
#, c-format
-msgid ""
-"Application Name\n"
-"or Full Path:"
+msgid "Configure the network now"
msgstr ""
-#: ../../services.pm:1
+#: printer/printerdrake.pm:3216
#, c-format
-msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
+msgid "Network functionality not configured"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: printer/printerdrake.pm:3217
#, c-format
-msgid "Radio support:"
+msgid "You are going to configure a remote printer. This needs working network access, but your network is not configured yet. If you go on without network configuration, you will not be able to use the printer which you are configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:3220
#, c-format
-msgid "Installing SANE packages..."
+msgid "Go on without configuring the network"
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:3253
#, c-format
-msgid "LDAP"
+msgid "The network configuration done during the installation cannot be started now. Please check whether the network is accessable after booting your system and correct the configuration using the Mandrake Control Center, section \"Network & Internet\"/\"Connection\", and afterwards set up the printer, also using the Mandrake Control Center, section \"Hardware\"/\"Printer\""
msgstr ""
-#: ../../bootloader.pm:1
+#: printer/printerdrake.pm:3254
#, c-format
-msgid "SILO"
+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 ""
-#: ../../diskdrake/removable.pm:1
+#: printer/printerdrake.pm:3264
#, c-format
-msgid "Change type"
+msgid "Restarting printing system..."
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:3303
#, c-format
-msgid ", USB printer #%s"
+msgid "high"
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:3303
#, c-format
-msgid "SILO Installation"
+msgid "paranoid"
msgstr ""
-#: ../../install_messages.pm:1
+#: printer/printerdrake.pm:3304
#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
+msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../standalone/drakclock:1
+#: printer/printerdrake.pm:3305
#, c-format
-msgid "Enable Network Time Protocol"
+msgid ""
+"You are about to install the printing system %s on a system running in the %s security level.\n"
+"\n"
+"This printing system runs a daemon (background process) which waits for print jobs and handles them. This daemon is also accessable by remote machines through the network and so it is a possible point for attacks. Therefore only a few selected daemons are started by default in this security level.\n"
+"\n"
+"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:3339
#, c-format
-msgid "paranoid"
+msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../security/l10n.pm:1
+#: printer/printerdrake.pm:3340
#, c-format
-msgid "Do not send mails when unneeded"
+msgid ""
+"The printing system (%s) will not be started automatically when the machine is booted.\n"
+"\n"
+"It is possible that the automatic starting was turned off by changing to a higher security level, because the printing system is a potential point for attacks.\n"
+"\n"
+"Do you want to have the automatic starting of the printing system turned on again?"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: printer/printerdrake.pm:3361 printer/printerdrake.pm:3576
#, c-format
-msgid "Your scanner(s) will not be available on the network."
+msgid "Checking installed software..."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:3367
#, c-format
-msgid "Send mail report after each backup to:"
+msgid "Removing %s ..."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:3374
#, c-format
-msgid ""
-"This command you can also use in the \"Printing command\" field of the printing dialogs of many applications. But here do not supply the file name because the file to print is provided by the application.\n"
-""
+msgid "Installing %s ..."
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#: printer/printerdrake.pm:3421
#, c-format
-msgid "Resolution"
+msgid "Setting Default Printer..."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:3441
#, c-format
-msgid "To print to a SMB printer, you need to provide the SMB host name (Note! It may be different from its TCP/IP hostname!) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+msgid "Select Printer Spooler"
msgstr ""
-#: ../../security/help.pm:1
+#: printer/printerdrake.pm:3442
#, c-format
-msgid " Enabling su only from members of the wheel group or allow su from any user."
+msgid "Which printing system (spooler) do you want to use?"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakgw:1
+#: printer/printerdrake.pm:3493
#, c-format
-msgid "reconfigure"
+msgid "Failed to configure printer \"%s\"!"
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1
+#: printer/printerdrake.pm:3506
#, 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."
+msgid "Installing Foomatic..."
msgstr ""
-#: ../../security/l10n.pm:1
+#: printer/printerdrake.pm:3691
#, c-format
-msgid "Shell timeout"
+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 ""
-#: ../../standalone/logdrake:1
+#: printer/printerdrake.pm:3718
#, c-format
-msgid "Xinetd Service"
+msgid "Display all available remote CUPS printers"
msgstr ""
-#: ../../any.pm:1
+#: printer/printerdrake.pm:3719
#, c-format
-msgid "access to network tools"
+msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:3727
#, c-format
-msgid "Firmware-Upload for HP LaserJet 1000"
+msgid "CUPS configuration"
msgstr ""
-#: ../advertising/03-software.pl:1
+#: printer/printerdrake.pm:3739
#, c-format
-msgid "And, of course, push multimedia to its limits with the very latest software to play videos, audio files and to handle your images or photos."
+msgid "Change the printing system"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:3748
#, c-format
-msgid "Here is a list of all auto-detected printers. "
+msgid "Normal Mode"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: printer/printerdrake.pm:4020 printer/printerdrake.pm:4075 printer/printerdrake.pm:4156 printer/printerdrake.pm:4166
#, c-format
-msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+msgid "Printer options"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:4056
#, c-format
-msgid ""
-"Restore Selected\n"
-"Files"
+msgid "Modify printer configuration"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:4058
#, c-format
msgid ""
-"%s exists, delete?\n"
-"\n"
-"Warning: If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: printer/printerdrake.pm:4062
#, c-format
-msgid "Please fill or check the field below"
+msgid "Do it!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:4067 printer/printerdrake.pm:4125
#, c-format
-msgid "Do you want to save /etc/fstab modifications"
+msgid "Printer connection type"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: printer/printerdrake.pm:4068 printer/printerdrake.pm:4129
#, c-format
-msgid "Boot Protocol"
+msgid "Printer name, description, location"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:4070 printer/printerdrake.pm:4148
#, c-format
-msgid ""
-"LVM-disks %s\n"
-""
+msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../services.pm:1
+#: printer/printerdrake.pm:4071 printer/printerdrake.pm:4149
#, c-format
-msgid "On boot"
+msgid "Printer manufacturer, model"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: printer/printerdrake.pm:4077 printer/printerdrake.pm:4160
#, c-format
-msgid "The package %s is needed. Install it?"
+msgid "Set this printer as the default"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: printer/printerdrake.pm:4079 printer/printerdrake.pm:4167
#, c-format
-msgid "Bus identification"
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:4080 printer/printerdrake.pm:4172
#, c-format
-msgid "Vatican"
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: printer/printerdrake.pm:4081 printer/printerdrake.pm:4177
#, c-format
-msgid "Please make a backup of your data first"
+msgid "Print test pages"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: printer/printerdrake.pm:4082 printer/printerdrake.pm:4179
#, c-format
-msgid "ADSL adapters"
+msgid "Learn how to use this printer"
msgstr ""
-#: ../../install_interactive.pm:1
+#: printer/printerdrake.pm:4083 printer/printerdrake.pm:4181
#, c-format
-msgid "You have more than one hard drive, which one do you install linux on?"
+msgid "Remove printer"
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:4137
#, c-format
-msgid "Eritrea"
+msgid "Removing old printer \"%s\"..."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: printer/printerdrake.pm:4168
#, c-format
-msgid "Boot ISO"
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../network/adsl.pm:1
+#: printer/printerdrake.pm:4170
#, c-format
-msgid "Firmware needed"
+msgid "The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakfont:1
+#: printer/printerdrake.pm:4171
#, c-format
-msgid "Remove List"
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../advertising/05-desktop.pl:1
+#: printer/printerdrake.pm:4173
#, c-format
-msgid "A customizable environment"
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr ""
-#: ../../keyboard.pm:1
+#: printer/printerdrake.pm:4175
#, c-format
-msgid "Inuktitut"
+msgid "The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:4176
#, c-format
-msgid "Some protocols, like rsync, may be configured at the server end. Rather than using a directory path, you would use the 'module' name for the service path."
+msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
-#: ../../lang.pm:1
+#: printer/printerdrake.pm:4220
#, c-format
-msgid "Morocco"
+msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:4224
#, c-format
-msgid "Which printer model do you have?"
+msgid "Removing printer \"%s\"..."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: printer/printerdrake.pm:4248
#, c-format
-msgid "Add a new printer"
+msgid "Default printer"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: printer/printerdrake.pm:4249
#, c-format
-msgid " All of your selected data have been "
+msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../lang.pm:1
+#: raid.pm:37
#, c-format
-msgid "Nepal"
+msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: raid.pm:139
#, c-format
-msgid "<-- Delete"
+msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: raid.pm:139
#, c-format
-msgid "cpu # "
+msgid "mkraid failed"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: raid.pm:155
#, c-format
-msgid "chunk size"
+msgid ""
+"Not enough partitions for RAID level %d\n"
+""
msgstr ""
-#: ../../security/help.pm:1
+#: scanner.pm:95
#, c-format
-msgid ""
-"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
-"\n"
-"If set to NONE, no issues are allowed.\n"
-"\n"
-"Else only /etc/issue is allowed."
+msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""
-#: ../../security/help.pm:1
+#: scanner.pm:101
#, c-format
-msgid " Enable/Disable sulogin(8) in single user level."
+msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
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:1
+#: scanner.pm:108
#, c-format
-msgid "commands before booting, or 'c' for a command-line."
+msgid "Could not set permissions of firmware file %s!"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: scanner.pm:187 standalone/scannerdrake:46 standalone/scannerdrake:53 standalone/scannerdrake:57 standalone/scannerdrake:65 standalone/scannerdrake:327 standalone/scannerdrake:401 standalone/scannerdrake:445 standalone/scannerdrake:449 standalone/scannerdrake:471 standalone/scannerdrake:536 standalone/scannerdrake:670 standalone/scannerdrake:681 standalone/scannerdrake:820 standalone/scannerdrake:831 standalone/scannerdrake:896
#, c-format
-msgid "Problems installing package %s"
+msgid "Scannerdrake"
msgstr ""
-#: ../../standalone/logdrake:1
+#: scanner.pm:188 standalone/scannerdrake:897
#, c-format
-msgid "You will receive an alert if the load is higher than this value"
+msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: scanner.pm:189
#, c-format
-msgid "Add a scanner manually"
+msgid "Your scanner(s) will not be available for non-root users."
msgstr ""
-#: ../../standalone/printerdrake:1
+#: security/help.pm:11
#, c-format
-msgid "Refresh"
+msgid "Accept/Refuse bogus IPv4 error messages."
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: security/help.pm:13
#, c-format
-msgid "Reload partition table"
+msgid " Accept/Refuse broadcasted icmp echo."
msgstr ""
-#: ../../standalone/drakboot:1
+#: security/help.pm:15
#, c-format
-msgid "Yes, I want autologin with this (user, desktop)"
+msgid " Accept/Refuse icmp echo."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/help.pm:17
#, c-format
-msgid "Restore Selected"
+msgid "Allow/Forbid autologin."
msgstr ""
-#: ../../standalone/drakfont:1
+#: security/help.pm:19
#, c-format
-msgid "Search for fonts in installed list"
+msgid ""
+"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
+"\n"
+"If set to NONE, no issues are allowed.\n"
+"\n"
+"Else only /etc/issue is allowed."
msgstr ""
-#: ../../standalone/drakgw:1
+#: security/help.pm:25
#, c-format
-msgid "The Local Network did not finish with `.0', bailing out."
+msgid "Allow/Forbid reboot by the console user."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: security/help.pm:27
#, c-format
-msgid "Boot"
+msgid "Allow/Forbid remote root login."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/help.pm:29
#, c-format
-msgid " and the CD is in the drive"
+msgid "Allow/Forbid direct root login."
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: security/help.pm:31
#, c-format
-msgid "Tuner type:"
+msgid "Allow/Forbid the list of users on the system on display managers (kdm and gdm)."
msgstr ""
-#: ../../help.pm:1
+#: security/help.pm:33
#, c-format
msgid ""
-"Now, it's time to select a printing system for your computer. Other OSs may\n"
-"offer you one, but Mandrake Linux offers two. Each of the printing system\n"
-"is best suited to particular types of configuration.\n"
+"Allow/Forbid X connections:\n"
"\n"
-" * \"%s\" -- which is an acronym for ``print, don't queue'', is the choice\n"
-"if you have a direct connection to your printer, you want to be able to\n"
-"panic out of printer jams, and you do not have networked printers. (\"%s\"\n"
-"will handle only very simple network cases and is somewhat slow when used\n"
-"with networks.) It's recommended that you use \"pdq\" if this is your first\n"
-"experience with GNU/Linux.\n"
+"- ALL (all connections are allowed),\n"
"\n"
-" * \"%s\" - `` Common Unix Printing System'', is an excellent choice for\n"
-"printing to your local printer or to one halfway around the planet. It is\n"
-"simple to configure and can act as a server or a client for the ancient\n"
-"\"lpd \" printing system, so it compatible with older operating systems\n"
-"which may still need print services. While quite powerful, the basic setup\n"
-"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
-"sure you turn on the \"cups-lpd \" daemon. \"%s\" includes graphical\n"
-"front-ends for printing or choosing printer options and for managing the\n"
-"printer.\n"
+"- LOCAL (only connection from local machine),\n"
"\n"
-"If you make a choice now, and later find that you don't like your printing\n"
-"system you may change it by running PrinterDrake from the Mandrake Control\n"
-"Center and clicking the expert button."
+"- NONE (no connection)."
msgstr ""
-#: ../../keyboard.pm:1
+#: security/help.pm:41
#, c-format
-msgid "\"Menu\" key"
+msgid ""
+"The argument specifies if clients are authorized to connect\n"
+"to the X server from the network on the tcp port 6000 or not."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/help.pm:44
#, c-format
msgid ""
+"Authorize:\n"
"\n"
+"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if set to \"ALL\",\n"
"\n"
-"Please check whether Printerdrake did the auto-detection of your printer model correctly. Find the correct model in the list when a wrong model or \"Raw printer\" is highlighted."
+"- only local ones if set to \"LOCAL\"\n"
+"\n"
+"- none if set to \"NONE\".\n"
+"\n"
+"To authorize the services you need, use /etc/hosts.allow (see hosts.allow(5))."
msgstr ""
-#: ../../standalone/draksec:1
+#: security/help.pm:54
#, c-format
-msgid "Security Administrator:"
+msgid ""
+"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
+"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
+"symlink /etc/security/msec/server to point to\n"
+"/etc/security/msec/server.<SERVER_LEVEL>.\n"
+"\n"
+"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
+"add a service if it is present in the file during the installation of\n"
+"packages."
msgstr ""
-#: ../../security/help.pm:1
+#: security/help.pm:63
#, c-format
-msgid "Set the shell timeout. A value of zero means no timeout."
+msgid ""
+"Enable/Disable crontab and at for users.\n"
+"\n"
+"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
+"and crontab(1))."
msgstr ""
-#: ../../network/tools.pm:1
+#: security/help.pm:68
#, c-format
-msgid "Firmware copy succeeded"
+msgid "Enable/Disable syslog reports to console 12"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
+#: security/help.pm:70
#, c-format
msgid ""
-"You can't use another CDROM when the following programs are running: \n"
-"%s"
-msgstr ""
-
-#: ../../security/help.pm:1
-#, c-format
-msgid "if set to yes, check permissions of files in the users' home."
+"Enable/Disable name resolution spoofing protection. If\n"
+"\"alert\" is true, also reports to syslog."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: security/help.pm:73
#, c-format
-msgid ""
-"You don't have an Internet connection.\n"
-"Create one first by clicking on 'Configure'"
+msgid "Enable/Disable IP spoofing protection."
msgstr ""
-#: ../../standalone/drakfont:1
+#: security/help.pm:75
#, c-format
-msgid "Fonts copy"
+msgid "Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: security/help.pm:77
#, c-format
-msgid "Automated"
+msgid "Enable/Disable the logging of IPv4 strange packets."
msgstr ""
-#: ../../Xconfig/test.pm:1
+#: security/help.pm:79
#, c-format
-msgid "Do you want to test the configuration?"
+msgid "Enable/Disable msec hourly security check."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/help.pm:81
#, c-format
-msgid "The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/GIMP."
+msgid " Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: security/help.pm:83
#, c-format
-msgid "Save packages selection"
+msgid "Use password to authenticate users."
msgstr ""
-#: ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: security/help.pm:85
#, c-format
-msgid "/_Actions"
+msgid "Activate/Disable ethernet cards promiscuity check."
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: security/help.pm:87
#, c-format
-msgid "Remove the last item"
+msgid " Activate/Disable daily security check."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/help.pm:89
#, c-format
-msgid "User list to restore (only the most recent date per user is important)"
+msgid " Enable/Disable sulogin(8) in single user level."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: security/help.pm:91
#, c-format
-msgid "No net boot images created!"
+msgid "Add the name as an exception to the handling of password aging by msec."
msgstr ""
-#: ../../network/adsl.pm:1
+#: security/help.pm:93
#, c-format
-msgid "use pptp"
+msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
-#: ../../services.pm:1 ../../services.pm:1
+#: security/help.pm:95
#, c-format
-msgid "Choose which services should be automatically started at boot time"
+msgid "Set the password history length to prevent password reuse."
msgstr ""
-#: ../../security/l10n.pm:1
+#: security/help.pm:97
#, c-format
-msgid "Check files/directories writable by everybody"
+msgid "Set the password minimum length and minimum number of digit and minimum number of capitalized letters."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: security/help.pm:99
#, c-format
-msgid "Learn how to use this printer"
+msgid "Set the root umask."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: security/help.pm:100
#, c-format
-msgid "Configure the network now"
+msgid "if set to yes, check open ports."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: security/help.pm:101
#, c-format
-msgid "Choose a mirror from which to get the packages"
+msgid ""
+"if set to yes, check for :\n"
+"\n"
+"- empty passwords,\n"
+"\n"
+"- no password in /etc/shadow\n"
+"\n"
+"- for users with the 0 id other than root."
msgstr ""
-#: ../../install_interactive.pm:1
+#: security/help.pm:108
#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
+msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: security/help.pm:109
#, c-format
-msgid "Size: "
+msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: security/help.pm:110
#, c-format
-msgid "Which sector do you want to move it to?"
+msgid "if set to yes, run the daily security checks."
msgstr ""
-#: ../../lang.pm:1
+#: security/help.pm:111
#, c-format
-msgid "Bahamas"
+msgid "if set to yes, check additions/removals of sgid files."
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: security/help.pm:112
#, c-format
-msgid "Do you want to click on this button?"
+msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/drakups:1
+#: security/help.pm:113
#, c-format
-msgid "Manual configuration"
+msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""
-#: ../../services.pm:1
+#: security/help.pm:114
#, c-format
-msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
+msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
-#: ../../standalone/logdrake:1
+#: security/help.pm:115
#, c-format
-msgid "search"
+msgid "if set to yes, report unowned files."
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: security/help.pm:116
#, c-format
-msgid "Xpmac (installation display driver)"
+msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: security/help.pm:117
#, c-format
-msgid "Zeroconf host name must not contain a ."
+msgid "if set to yes, run chkrootkit checks."
msgstr ""
-#: ../../security/help.pm:1
+#: security/help.pm:118
#, c-format
-msgid " Accept/Refuse icmp echo."
+msgid "if set, send the mail report to this email address else send it to root."
msgstr ""
-#: ../../services.pm:1
+#: security/help.pm:119
#, c-format
-msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
+msgid "if set to yes, report check result by mail."
msgstr ""
-#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#: security/help.pm:120
#, c-format
-msgid "Unknown/Others"
+msgid "if set to yes, run some checks against the rpm database."
msgstr ""
-#: ../../standalone/drakxtv:1
+#: security/help.pm:121
#, c-format
-msgid "No TV Card detected!"
+msgid "if set to yes, report check result to syslog."
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
+#: security/help.pm:122
#, c-format
-msgid "Options"
+msgid "if set to yes, reports check result to tty."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/help.pm:124
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
+msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/help.pm:126
#, c-format
-msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when connected to the first parallel port. When your printer is connected to another port or to a print server box please connect the printer to the first parallel port before you print a test page. Otherwise the printer will not work. Your connection type setting will be ignored by the driver."
+msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: security/help.pm:128
#, c-format
-msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
+msgid "Set the user umask."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/l10n.pm:11
#, c-format
-msgid "Auto-detected"
+msgid "Accept bogus IPv4 error messages"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: security/l10n.pm:12
#, c-format
-msgid ""
-"You are about to configure your computer to install a PXE server as a DHCP server\n"
-"and a TFTP server to build an installation server.\n"
-"With that feature, other computers on your local network will be installable using this computer as source.\n"
-"\n"
-"Make sure you have configured your Network/Internet access using drakconnect before going any further.\n"
-"\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network (LAN)."
+msgid "Accept broadcasted icmp echo"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: security/l10n.pm:13
#, c-format
-msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independent sound API (it's available on most UNIX(tm) systems) but it's a very basic and limited API.\n"
-"What's more, OSS drivers all reinvent the wheel.\n"
-"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture which\n"
-"supports quite a large range of ISA, USB and PCI cards.\n"
-"\n"
-"It also provides a much higher API than OSS.\n"
-"\n"
-"To use alsa, one can either use:\n"
-"- the old compatibility OSS api\n"
-"- the new ALSA api that provides many enhanced features but requires using the ALSA library.\n"
-""
+msgid "Accept icmp echo"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: security/l10n.pm:15
#, c-format
-msgid "No free space for 1MB bootstrap! Install will continue, but to boot your system, you'll need to create the bootstrap partition in DiskDrake"
+msgid "/etc/issue* exist"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: security/l10n.pm:16
#, c-format
-msgid "It is possible that your %s needs its firmware to be uploaded everytime when it is turned on."
+msgid "Reboot by the console user"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/l10n.pm:17
#, c-format
-msgid "Please choose the printer you want to set up or enter a device name/file name in the input line"
+msgid "Allow remote root login"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
+#: security/l10n.pm:18
#, c-format
-msgid "Refuse"
+msgid "Direct root login"
msgstr ""
-#: ../../services.pm:1
+#: security/l10n.pm:19
#, c-format
-msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
-#: ../../standalone/draksec:1
+#: security/l10n.pm:20
#, c-format
-msgid "LOCAL"
+msgid "Allow X Window connections"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: security/l10n.pm:21
#, c-format
-msgid "HFS"
+msgid "Authorize TCP connections to X Window"
msgstr ""
-#: ../../fs.pm:1
+#: security/l10n.pm:22
#, c-format
-msgid "Creating and formatting file %s"
+msgid "Authorize all services controlled by tcp_wrappers"
msgstr ""
-#: ../../security/help.pm:1
+#: security/l10n.pm:23
#, c-format
-msgid "if set to yes, check additions/removals of sgid files."
+msgid "Chkconfig obey msec rules"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/l10n.pm:24
#, c-format
-msgid ""
-"The HP LaserJet 1000 needs its firmware to be uploaded after being turned on. Download the Windows driver package from the HP web site (the firmware on the printer's CD does not work) and extract the firmware file from it by uncompresing the self-extracting '.exe' file with the 'unzip' utility and searching for the 'sihp1000.img' file. Copy this file into the '/etc/printer' directory. There it will be found by the automatic uploader script and uploaded whenever the printer is connected and turned on.\n"
-""
+msgid "Enable \"crontab\" and \"at\" for users"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: security/l10n.pm:25
#, c-format
-msgid "Choose an existing LVM to add to"
+msgid "Syslog reports to console 12"
msgstr ""
-#: ../../standalone/drakfont:1
+#: security/l10n.pm:26
#, c-format
-msgid "xfs restart"
+msgid "Name resolution spoofing protection"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: security/l10n.pm:27
#, c-format
-msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+msgid "Enable IP spoofing protection"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: security/l10n.pm:28
#, c-format
-msgid "Use the scanners on hosts: "
+msgid "Enable libsafe if libsafe is found on the system"
msgstr ""
-#: ../../standalone/drakfont:1
+#: security/l10n.pm:29
#, c-format
-msgid "Unselected All"
+msgid "Enable the logging of IPv4 strange packets"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#: security/l10n.pm:30
#, c-format
-msgid "No partition available"
+msgid "Enable msec hourly security check"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: security/l10n.pm:31
#, c-format
-msgid ""
-"Printer Management \n"
-""
+msgid "Enable su only from the wheel group members or for any user"
msgstr ""
-#: ../../standalone/logdrake:1
+#: security/l10n.pm:32
#, c-format
-msgid "Domain Name Resolver"
+msgid "Use password to authenticate users"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: security/l10n.pm:33
#, c-format
-msgid "Encryption key (again)"
+msgid "Ethernet cards promiscuity check"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/l10n.pm:34
#, c-format
-msgid "Samba share name missing!"
+msgid "Daily security check"
msgstr ""
-#: ../../standalone/drakfont:1
+#: security/l10n.pm:35
#, c-format
-msgid "True Type install done"
+msgid "Sulogin(8) in single user level"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1
+#: security/l10n.pm:36
#, c-format
-msgid "Detection in progress"
+msgid "No password aging for"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: security/l10n.pm:37
#, c-format
-msgid "Build Whole Kernel -->"
+msgid "Set password expiration and account inactivation delays"
msgstr ""
-#: ../../lang.pm:1
+#: security/l10n.pm:38
#, c-format
-msgid "Welcome to %s"
+msgid "Password history length"
msgstr ""
-#: ../../standalone/drakhelp:1
+#: security/l10n.pm:39
#, c-format
-msgid ""
-" drakhelp 0.1\n"
-"Copyright (C) 2003 MandrakeSoft.\n"
-"This is free software and may be redistributed under the terms of the GNU GPL.\n"
-"\n"
-"Usage: \n"
-""
+msgid "Password minimum length and number of digits and upcase letters"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: security/l10n.pm:40
#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
+msgid "Root umask"
msgstr ""
-#: ../../standalone/drakboot:1
+#: security/l10n.pm:41
#, c-format
-msgid "Bootsplash"
+msgid "Shell history size"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/l10n.pm:42
#, c-format
-msgid ""
-"The following printer\n"
-"\n"
-"%s%s\n"
-"is directly connected to your system"
+msgid "Shell timeout"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/l10n.pm:43
#, c-format
-msgid "Printer sharing on hosts/networks: "
+msgid "User umask"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: security/l10n.pm:44
#, c-format
-msgid ""
-"\n"
-"The \"%s\" command also allows to modify the option settings for a particular printing job. Simply add the desired settings to the command line, e. g. \"%s <file>\". "
+msgid "Check open ports"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: security/l10n.pm:45
#, c-format
-msgid ""
-"Receiving\n"
-"speed:"
+msgid "Check for unsecured accounts"
msgstr ""
-#: ../../standalone/drakclock:1
+#: security/l10n.pm:46
#, c-format
-msgid "DrakClock"
+msgid "Check permissions of files in the users' home"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: security/l10n.pm:47
#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without them. Would you like to specify\n"
-"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it should\n"
-"not cause any damage."
+msgid "Check if the network devices are in promiscuous mode"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/l10n.pm:48
#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+msgid "Run the daily security checks"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/l10n.pm:49
#, c-format
-msgid ""
-"\n"
-"- Daemon, %s via:\n"
-""
+msgid "Check additions/removals of sgid files"
msgstr ""
-#: ../../lang.pm:1
+#: security/l10n.pm:50
#, c-format
-msgid "Cuba"
+msgid "Check empty password in /etc/shadow"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/l10n.pm:51
#, c-format
-msgid "October"
+msgid "Verify checksum of the suid/sgid files"
msgstr ""
-#: ../../lang.pm:1
+#: security/l10n.pm:52
#, c-format
-msgid "Belize"
+msgid "Check additions/removals of suid root files"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: security/l10n.pm:53
#, c-format
-msgid "Searching for new printers..."
+msgid "Report unowned files"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/l10n.pm:54
#, c-format
-msgid " (multi-session)"
+msgid "Check files/directories writable by everybody"
msgstr ""
-#: ../../any.pm:1
+#: security/l10n.pm:55
#, c-format
-msgid "Kernel Boot Timeout"
+msgid "Run chkrootkit checks"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: security/l10n.pm:56
#, 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."
+msgid "Do not send mails when unneeded"
msgstr ""
-#: ../../security/help.pm:1
+#: security/l10n.pm:57
#, c-format
-msgid " Activate/Disable daily security check."
+msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/l10n.pm:58
#, c-format
-msgid ""
-"\t-CD-R.\n"
-""
+msgid "Report check result by mail"
msgstr ""
-#: ../../security/l10n.pm:1
+#: security/l10n.pm:59
#, c-format
-msgid "Enable libsafe if libsafe is found on the system"
+msgid "Run some checks against the rpm database"
msgstr ""
-#: ../../install_interactive.pm:1
+#: security/l10n.pm:60
#, c-format
-msgid "The DrakX Partitioning wizard found the following solutions:"
+msgid "Report check result to syslog"
msgstr ""
-#: ../../keyboard.pm:1
+#: security/l10n.pm:61
#, c-format
-msgid "Hungarian"
+msgid "Reports check result to tty"
msgstr ""
-#: ../../network/isdn.pm:1
+#: security/level.pm:10
#, c-format
-msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+msgid "Welcome To Crackers"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: security/level.pm:11
#, c-format
-msgid "Automatic time synchronization (using NTP)"
+msgid "Poor"
msgstr ""
-#: ../../network/adsl.pm:1
+#: security/level.pm:13
#, c-format
-msgid "Use my Windows partition"
+msgid "High"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: security/level.pm:14
#, c-format
-msgid "8 MB"
+msgid "Higher"
msgstr ""
-#: ../../any.pm:1
+#: security/level.pm:15
#, c-format
-msgid "LDAP Server"
+msgid "Paranoid"
msgstr ""
-#: ../../services.pm:1
+#: security/level.pm:41
#, c-format
msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It won't get started unless configured so it is safe to have\n"
-"it installed on machines that don't need it."
+"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 ""
-#: ../../network/netconnect.pm:1
+#: security/level.pm:44
#, c-format
-msgid "Choose your country"
+msgid "Passwords are now enabled, but use as a networked computer is still not recommended."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/level.pm:45
#, c-format
-msgid ""
-"\n"
-"- System Files:\n"
-""
+msgid "This is the standard security recommended for a computer that will be used to connect to the Internet as a client."
msgstr ""
-#: ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1
+#: security/level.pm:46
#, c-format
-msgid "Standalone Tools"
+msgid "There are already some restrictions, and more automatic checks are run every night."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: security/level.pm:47
#, c-format
-msgid "Where"
+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 ""
-#: ../../standalone/logdrake:1
+#: security/level.pm:50
#, c-format
-msgid "but not matching"
+msgid "This is similar to the previous level, but the system is entirely closed and security features are at their maximum."
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: security/level.pm:55
#, c-format
-msgid "Here you can select an alternative driver (either OSS or ALSA) for your sound card (%s)."
+msgid "DrakSec Basic Options"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: security/level.pm:56
#, c-format
-msgid "Configuring PCMCIA cards..."
+msgid "Please choose the desired security level"
msgstr ""
-#: ../../common.pm:1
+#: security/level.pm:60
#, c-format
-msgid "kdesu missing"
+msgid "Security level"
msgstr ""
-#: ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1
+#: security/level.pm:62
#, c-format
-msgid ""
-"%s: %s requires a username...\n"
-""
+msgid "Use libsafe for servers"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../network/netconnect.pm:1
+#: security/level.pm:63
#, c-format
-msgid "Encryption key"
+msgid "A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../mouse.pm:1
+#: security/level.pm:64
#, c-format
-msgid "Microsoft IntelliMouse"
+msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../keyboard.pm:1
+#: services.pm:19
#, c-format
-msgid ""
-"This setting will be activated after the installation.\n"
-"During installation, you will need to use the Right Control\n"
-"key to switch between the different keyboard layouts."
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
-#: ../../lang.pm:1
+#: services.pm:20
#, c-format
-msgid "Christmas Island"
+msgid "Anacron is a periodic command scheduler."
msgstr ""
-#: ../../mouse.pm:1
+#: services.pm:21
#, c-format
-msgid "Automatic"
+msgid ""
+"apmd is used for monitoring battery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: services.pm:23
#, c-format
-msgid "Installation of bootloader failed. The following error occured:"
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: services.pm:25
#, c-format
-msgid "EIDE/SCSI channel"
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the basic\n"
+"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: services.pm:28
#, c-format
-msgid "Set this printer as the default"
+msgid ""
+"FAM is a file monitoring daemon. It is used to get reports when files change.\n"
+"It is used by GNOME and KDE"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: services.pm:30
#, c-format
-msgid "Verify that %s is the correct path"
+msgid ""
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste operations,\n"
+"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../install_interactive.pm:1
+#: services.pm:33
#, c-format
-msgid "partition %s"
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
-#: ../../security/level.pm:1
+#: services.pm:35
#, c-format
-msgid "Paranoid"
+msgid "Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-#: ../../any.pm:1
+#: services.pm:36
#, c-format
-msgid "NIS"
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd disables\n"
+"all of the services it is responsible for."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: services.pm:40
#, c-format
-msgid "<-- Del User"
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: services.pm:42
#, c-format
-msgid "Location on the bus"
+msgid ""
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: services.pm:45
#, c-format
-msgid "No printer found!"
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: services.pm:47
#, c-format
-msgid "the vendor name of the device"
+msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: services.pm:48
#, c-format
-msgid "Erase entire disk"
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
msgstr ""
-#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: services.pm:50
#, c-format
-msgid " (Default)"
+msgid ""
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../standalone/drakgw:1
+#: services.pm:52
#, c-format
-msgid "Automatic reconfiguration"
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
-#: ../../lang.pm:1
+#: services.pm:54
#, c-format
-msgid "Turks and Caicos Islands"
+msgid "named (BIND) is a Domain Name Server (DNS) that is used to resolve host names to IP addresses."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: services.pm:55
#, c-format
-msgid "No Ip"
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1 ../../interactive/newt.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: services.pm:57
#, c-format
-msgid "<- Previous"
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: services.pm:59
#, c-format
-msgid "Transfer Now"
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: services.pm:62
#, c-format
-msgid "Set root password and network authentication methods"
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../ugtk2.pm:1
+#: services.pm:64
#, c-format
-msgid "Toggle between flat and group sorted"
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
msgstr ""
-#: ../../standalone/drakboot:1
+#: services.pm:66
#, c-format
-msgid "Themes"
+msgid "Support the OKI 4w and compatible winprinters."
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: services.pm:67
#, c-format
-msgid "Options: %s"
+msgid ""
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to have\n"
+"it installed on machines that don't need it."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: services.pm:70
#, c-format
-msgid "OKI winprinter configuration"
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../lang.pm:1
+#: services.pm:73
#, c-format
-msgid "Saint Helena"
+msgid "Postfix is a Mail Transport Agent, which is the program that moves mail from one machine to another."
msgstr ""
-#: ../../printer/main.pm:1
+#: services.pm:74
#, c-format
-msgid "Parallel port #%s"
+msgid ""
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: services.pm:76
#, c-format
-msgid "Security Level"
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: services.pm:78
#, c-format
msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
msgstr ""
-#: ../../lang.pm:1
+#: services.pm:81
#, c-format
-msgid "Sudan"
+msgid ""
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
-#: ../../keyboard.pm:1
+#: services.pm:83
#, c-format
-msgid "Polish (qwertz layout)"
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
-#: ../../lang.pm:1
+#: services.pm:85
#, c-format
-msgid "Syria"
+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 ""
-#: ../../printer/printerdrake.pm:1
+#: services.pm:87
#, c-format
-msgid "Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 with scanner, DeskJet 450, Sony IJP-V100), an HP PhotoSmart or an HP LaserJet 2200?"
+msgid "Launch the sound system on your machine"
msgstr ""
-#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm:1
+#: services.pm:88
#, c-format
msgid ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"Choose an operating system from the list above or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-""
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../keyboard.pm:1
+#: services.pm:90
#, c-format
-msgid "Portuguese"
+msgid "Load the drivers for your usb devices."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: services.pm:91
#, c-format
-msgid "Loopback file name: "
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: services.pm:117 services.pm:159
#, c-format
-msgid "DNS server address should be in format 1.2.3.4"
+msgid "Choose which services should be automatically started at boot time"
msgstr ""
-#: ../../keyboard.pm:1
+#: services.pm:129
#, c-format
-msgid "Left Control key"
+msgid "Printing"
msgstr ""
-#: ../../lang.pm:1
+#: services.pm:130
#, c-format
-msgid "Serbia"
+msgid "Internet"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: services.pm:133
#, c-format
-msgid "Newzealand"
+msgid "File sharing"
msgstr ""
-#: ../../fsedit.pm:1 ../../fsedit.pm:1
+#: services.pm:140
#, c-format
-msgid "This directory should remain within the root filesystem"
+msgid "Remote Administration"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: services.pm:148
#, c-format
-msgid "Across Network"
+msgid "Database Server"
msgstr ""
-#: ../../keyboard.pm:1
+#: services.pm:211
#, c-format
-msgid "CapsLock key"
+msgid "running"
msgstr ""
-#: ../../steps.pm:1
+#: services.pm:211
#, c-format
-msgid "Install bootloader"
+msgid "stopped"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: services.pm:215
#, c-format
-msgid "Select the memory size of your graphics card"
+msgid "Services and deamons"
msgstr ""
-#: ../../security/help.pm:1
+#: services.pm:221
#, c-format
msgid ""
-"Enable/Disable crontab and at for users.\n"
-"\n"
-"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
-"and crontab(1))."
+"No additional information\n"
+"about this service, sorry."
msgstr ""
-#: ../../standalone.pm:1
+#: services.pm:226 ugtk2.pm:1131
#, c-format
-msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
-"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : don't be interactive. To be used with (dis)connect."
+msgid "Info"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: services.pm:229
#, c-format
-msgid "Dynamic IP Address Pool:"
+msgid "Start when requested"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: services.pm:229
#, c-format
-msgid "LVM name?"
+msgid "On boot"
msgstr ""
-#: ../../standalone/service_harddrake:1
+#: services.pm:244
#, c-format
-msgid ""
-"Some devices in the \"%s\" hardware class were removed:\n"
-""
+msgid "Start"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: services.pm:244
#, c-format
-msgid "The firmware file %s does not exist or is unreadable!"
+msgid "Stop"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: share/advertising/01-thanks.pl:8
#, c-format
-msgid "Found %s %s interfaces"
+msgid "Thank you for choosing Mandrake Linux 9.2"
msgstr ""
-#: ../../standalone/drakfont:1
+#: share/advertising/01-thanks.pl:10
#, c-format
-msgid "Post Install"
+msgid "Welcome to the Open Source world."
msgstr ""
-#: ../../standalone/drakgw:1
+#: share/advertising/01-thanks.pl:12
#, c-format
-msgid "The internal domain name"
+msgid "The success of MandrakeSoft is based upon the principle of Free Software. Your new operating system is the result of collaborative work of the worldwide Linux Community."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: share/advertising/02-community.pl:8
#, c-format
-msgid "Card IRQ"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../standalone/logdrake:1
+#: share/advertising/02-community.pl:10
#, c-format
-msgid "logdrake"
+msgid "Want to know more and to contribute to the Open Source community? Get involved in the Free Software world!"
msgstr ""
-#: ../../standalone.pm:1
+#: share/advertising/02-community.pl:11
#, c-format
-msgid ""
-"Font Importation and monitoring application \n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : strong verification of font.\n"
-"--install : accept any font file and any directry.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
+msgid "To share your own knowledge and help build Linux software, join our discussion forums on our \"Community\" webpages."
msgstr ""
-#: ../../standalone.pm:1
+#: share/advertising/03-software.pl:8
#, c-format
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../any.pm:1
+#: share/advertising/03-software.pl:10
#, c-format
-msgid "Choose the floppy drive you want to use to make the bootdisk"
+msgid "Surf the Web with Mozilla or Konqueror, read your mail with Evolution or Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
+#: share/advertising/03-software.pl:11
#, c-format
-msgid "LILO with text menu"
+msgid "And, of course, push multimedia to its limits with the very latest software to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: share/advertising/04-configuration.pl:8
#, c-format
-msgid "Everything (no firewall)"
+msgid "Mandrake's multipurpose configuration tool"
msgstr ""
-#: ../../any.pm:1
+#: share/advertising/04-configuration.pl:10
#, c-format
-msgid "You must specify a kernel image"
+msgid "Mandrake Linux 9.2 provides you with the Mandrake Control Center, a powerful tool to fully adapt your computer to the use you make of it. Configure and customize elements such as the security level, the peripherals (screen, mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../printer/main.pm:1
+#: share/advertising/05-desktop.pl:8
#, c-format
-msgid ", multi-function device on USB"
+msgid "A customizable environment"
msgstr ""
-#: ../../interactive/newt.pm:1
+#: share/advertising/05-desktop.pl:10
#, c-format
-msgid "Do"
+msgid "Perfectly adapt your computer to your needs thanks to the 11 available Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME 2.2, Window Maker, ..."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: share/advertising/06-development.pl:8
#, c-format
-msgid "Contacting the mirror to get the list of available packages..."
+msgid "Mandrake Linux 9.2: the ultimate development platform"
msgstr ""
-#: ../../keyboard.pm:1
+#: share/advertising/06-development.pl:10
#, c-format
-msgid "Lithuanian AZERTY (old)"
+msgid "To modify and to create in different languages such as Perl, Python, C and C++ has never been so easy thanks to GNU gcc 3 and the best Open Source development environments."
msgstr ""
-#: ../../keyboard.pm:1
+#: share/advertising/07-server.pl:8
#, c-format
-msgid "Brazilian (ABNT-2)"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: share/advertising/07-server.pl:10
#, c-format
-msgid "IP address of host/network:"
+msgid "Transform your computer into a powerful Linux server: Web server, mail, firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../standalone/draksplash:1
+#: share/advertising/08-store.pl:8
#, c-format
-msgid ""
-"the progress bar y coordinate\n"
-"of its upper left corner"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../install_gtk.pm:1
+#: share/advertising/08-store.pl:10
#, c-format
-msgid "System installation"
+msgid "Our full range of Linux solutions, as well as special offers on products and other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../lang.pm:1
+#: share/advertising/09-mdksecure.pl:8
#, c-format
-msgid "Saint Vincent and the Grenadines"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../security/help.pm:1
+#: share/advertising/09-mdksecure.pl:10
#, c-format
-msgid "Allow/Forbid reboot by the console user."
+msgid "Enhance your computer performance with the help of a selection of partners offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../standalone/logdrake:1
+#: share/advertising/10-security.pl:8
#, c-format
-msgid "/File/_Open"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: share/advertising/10-security.pl:10
#, c-format
-msgid "Location of auto_install.cfg file"
+msgid "MandrakeSoft has designed exclusive tools to create the most secured Linux version ever: Draksec, a system security management tool, and a strong firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../any.pm:1
+#: share/advertising/11-mnf.pl:8
#, c-format
-msgid "Open Firmware Delay"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../lang.pm:1
+#: share/advertising/11-mnf.pl:10
#, c-format
-msgid "Hungary"
+msgid "Complete your security setup with this very easy-to-use software which combines high performance components such as a firewall, a virtual private network (VPN) server and client, an intrusion detection system and a traffic manager."
msgstr ""
-#: ../../lang.pm:1
+#: share/advertising/11-mnf.pl:11
#, c-format
-msgid "New Zealand"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../standalone/net_monitor:1
+#: share/advertising/12-mdkexpert.pl:8
#, c-format
-msgid "Color configuration"
+msgid "Become a MandrakeExpert"
msgstr ""
-#: ../../security/level.pm:1
+#: share/advertising/12-mdkexpert.pl:10
#, c-format
-msgid "There are already some restrictions, and more automatic checks are run every night."
+msgid "Find the solutions of your problems via MandrakeSoft's online support platform."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: share/advertising/12-mdkexpert.pl:11
#, c-format
-msgid "please choose the date to restore"
+msgid "Join the MandrakeSoft support teams and the Linux Community online to share your knowledge and help others by becoming a recognized Expert on the online technical support website:"
msgstr ""
-#: ../../lang.pm:1
+#: share/advertising/13-mdkexpert_corporate.pl:8
#, c-format
-msgid "Netherlands Antilles"
+msgid "MandrakeExpert Corporate"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: share/advertising/13-mdkexpert_corporate.pl:10
#, c-format
-msgid "Switching from ext2 to ext3"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../printer/data.pm:1
+#: share/advertising/13-mdkexpert_corporate.pl:11
#, c-format
-msgid "LPRng"
+msgid "All incidents will be followed up by a single qualified MandrakeSoft technical expert."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone.pm:22
#, c-format
-msgid "Browse to new restore repository."
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
+"\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone.pm:41
#, c-format
msgid ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard allows you to install local or remote printers to be used from this machine and also from other machines in the network.\n"
-"\n"
-"It asks you for all necessary information to set up the printer and gives you access to all available printer drivers, driver options, and printer connection types."
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone.pm:52
#, c-format
-msgid "and %d unknown printers"
+msgid ""
+"[OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+" --help - print this help message.\n"
+" --report - program should be one of mandrake tools\n"
+" --incident - program should be one of mandrake tools"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone.pm:58
#, c-format
-msgid "Early Intel Pentium chips manufactured have a bug in their floating point processor which did not achieve the required precision when performing a Floating point DIVision (FDIV)"
+msgid ""
+"Font Importation and monitoring application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone.pm:71
#, c-format
msgid ""
-"Backup quota exceeded!\n"
-"%d MB used vs %d MB allocated."
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, IP, nbi image name)"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone.pm:83
#, c-format
-msgid "No ISDN PCI card found. Please select one on the next screen."
+msgid "[keyboard]"
msgstr ""
-#: ../../common.pm:1
+#: standalone.pm:84
#, c-format
-msgid "GB"
+msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr ""
-#: ../../any.pm:1
+#: standalone.pm:85
#, c-format
-msgid "Please give a user name"
+msgid ""
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
-#: ../../any.pm:1
+#: standalone.pm:94
#, c-format
-msgid "Enable CD Boot?"
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: standalone.pm:95
#, c-format
-msgid "Simply reboot"
+msgid ""
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/logdrake:1
+#: standalone.pm:100
#, c-format
-msgid "Congratulations"
+msgid "[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-usbtable] [--dynamic=dev]"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: standalone.pm:101
#, c-format
-msgid " enter `void' for void entry"
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone.pm:115
#, c-format
-msgid "Backups on unmountable media - Use Catalog to restore"
+msgid ""
+"\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] [-v|--version] "
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/XFdrake:89
#, c-format
-msgid "January"
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/XFdrake:93
#, c-format
-msgid "Password history length"
+msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakTermServ:83
#, c-format
-msgid "Winmodem connection"
+msgid "Useless without Terminal Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakTermServ:113 standalone/drakTermServ:120
#, c-format
msgid ""
-"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in the \"File\" menu).\n"
-"\n"
-"If you want to add, remove, or rename a printer, or if you want to change the default option settings (paper input tray, printout quality, ...), select \"Printer\" in the \"Hardware\" section of the Mandrake Control Center."
+"%s: %s requires a username...\n"
+""
msgstr ""
-#: ../../standalone/drakxtv:1
+#: standalone/drakTermServ:127
#, c-format
msgid ""
-"Now, you can run xawtv (under X Window!) !\n"
+"%s: %s requires hostname, MAC address, IP, nbi-image, 0/1 for THIN_CLIENT, 0/1 for Local Config...\n"
""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakTermServ:134
#, c-format
-msgid "Not enough swap space to fulfill installation, please add some"
+msgid ""
+"%s: %s requires hostname...\n"
+""
msgstr ""
-#. -PO: example: lilo-graphic on /dev/hda1
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakTermServ:146
#, c-format
-msgid "%s on %s"
+msgid ""
+"You must be root to read configuration file. \n"
+""
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakTermServ:241
#, c-format
-msgid "Allow/Forbid remote root login."
+msgid "Mandrake Terminal Server Configuration"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakTermServ:246
#, c-format
-msgid ""
-"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
-"local time according to the time zone you selected. If the clock on your\n"
-"motherboard is set to local time, you may deactivate this by unselecting\n"
-"\"%s\", which will let GNU/Linux know that the system clock and the\n"
-"hardware clock are in the same timezone. This is useful when the machine\n"
-"also hosts another operating system like Windows.\n"
-"\n"
-"The \"%s\" option will automatically regulate the clock by connecting to a\n"
-"remote time server on the Internet. For this feature to work, you must have\n"
-"a working Internet connection. It is best to choose a time server located\n"
-"near you. This option actually installs a time server that can used by\n"
-"other machines on your local network as well."
+msgid "DrakTermServ"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakTermServ:270
#, c-format
-msgid "Can't create log file!"
+msgid "Enable Server"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakclock:1
+#: standalone/drakTermServ:277
#, c-format
-msgid "Which is your timezone?"
+msgid "Disable Server"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakTermServ:285
#, c-format
-msgid "Use .backupignore files"
+msgid "Start Server"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakTermServ:292
#, c-format
-msgid "Guinea"
+msgid "Stop Server"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakTermServ:300
#, c-format
-msgid "The system is now connected to the Internet."
+msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakTermServ:305
#, c-format
-msgid "South Georgia and the South Sandwich Islands"
+msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: standalone/drakTermServ:311
#, c-format
-msgid "Japan (broadcast)"
+msgid "Add/Del Users"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakTermServ:316
#, c-format
-msgid "Fragmentation"
+msgid "Add/Del Clients"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakTermServ:347
#, c-format
msgid ""
-"Monitor\n"
"\n"
-" The installer will normally automatically detect and configure the\n"
-"monitor connected to your machine. If it is incorrect, you can choose from\n"
-"this list the monitor you actually have connected to your computer."
-msgstr ""
-
-#: ../../lang.pm:1
-#, c-format
-msgid "Mozambique"
-msgstr ""
-
-#: ../../standalone/logdrake:1
-#, c-format
-msgid "The wizard successfully configured the mail alert."
-msgstr ""
-
-#: ../../any.pm:1
-#, c-format
-msgid "Icon"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict@mandrakesoft.com\n"
+"\n"
+""
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
+#: standalone/drakTermServ:351
#, c-format
-msgid "Kill those programs"
+msgid ""
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakTermServ:386
#, c-format
-msgid "Please choose what you want to backup"
+msgid "drakTermServ Overview"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: standalone/drakTermServ:387
#, c-format
-msgid "256 colors (8 bits)"
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a graphical \n"
+" \tinterface to help manage/customize these images. To create the file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least one full kernel."
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakTermServ:393
#, c-format
-msgid "Read-write"
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks like:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakTermServ:411
#, c-format
msgid ""
-"Size: %s\n"
-""
+" While you can use a pool of IP addresses, rather than setup a specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' tools. This is enabled \n"
+" by creating separate config files associated with the client's IP address and creating \n"
+" read/write mount points to allow the client to alter the file. Once you are satisfied \n"
+" with the configuration, you can remove root login privileges from the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing clients."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakTermServ:431
#, c-format
-msgid "Hostname: "
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakTermServ:443
#, c-format
-msgid "Add a rule"
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this file."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakTermServ:447
#, c-format
msgid ""
-"Chunk size %s\n"
-""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique configuration files\n"
+" \ton the root filesystem of the server. By allowing local client hardware configuration, \n"
+" \tdrakTermServ will help create these files."
msgstr ""
-#: ../advertising/02-community.pl:1
+#: standalone/drakTermServ:452
#, c-format
-msgid "Build the future of Linux!"
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique configuration files\n"
+" \ton the root filesystem of the server. By allowing local client hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root login to the terminal \n"
+" server on each client machine that has this feature enabled. Local configuration can be\n"
+" turned back off, retaining the configuration files, once the client machine is configured."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakTermServ:461
#, c-format
-msgid "Local Printer"
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where mkinitrd-net\n"
+" \tputs its images."
msgstr ""
-#: ../../network/tools.pm:1
+#: standalone/drakTermServ:482
#, c-format
-msgid "Floppy access error, unable to mount device %s"
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/floppyload.bin \\\n"
+" \t\t/usr/share/etherboot/start16.bin \\\t\t\t\n"
+" \t\t/usr/lib/etherboot/zimg/3c509.zimg > /dev/fd0"
msgstr ""
-#: ../../standalone.pm:1
+#: standalone/drakTermServ:517
#, c-format
-msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+msgid "Boot Floppy"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakTermServ:519
#, c-format
-msgid "ADSL connection"
+msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakTermServ:604
#, c-format
-msgid ""
-"No configuration, please click Wizard or Advanced.\n"
-""
+msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: standalone/drakTermServ:606 standalone/drakTermServ:632
#, c-format
-msgid "Error!"
+msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakTermServ:616
#, c-format
-msgid "Permission denied transferring %s to %s"
+msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: standalone/drakTermServ:619
#, c-format
-msgid "/_Report Bug"
+msgid "Build Single NIC -->"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakTermServ:628
#, c-format
-msgid "Dominica"
+msgid "No NIC selected!"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakTermServ:631
#, c-format
-msgid "Resize"
+msgid "Build All Kernels -->"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: standalone/drakTermServ:643
#, c-format
-msgid ""
-"Resolution: %s\n"
-""
+msgid "<-- Delete"
msgstr ""
-#: ../../install2.pm:1
+#: standalone/drakTermServ:650
#, 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)"
+msgid "Delete All NBIs"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakTermServ:724
#, c-format
msgid ""
-"Please select the correct port. For example, the \"COM1\" port under\n"
-"Windows is named \"ttyS0\" under GNU/Linux."
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakTermServ:729
#, c-format
-msgid "The following packages are going to be removed"
+msgid "Add User -->"
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: standalone/drakTermServ:735
#, c-format
-msgid "Connect to the Internet"
+msgid "<-- Del User"
msgstr ""
-#: ../../install_interactive.pm:1
+#: standalone/drakTermServ:771
#, c-format
-msgid "Use existing partitions"
+msgid "type: %s"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakTermServ:775
#, c-format
-msgid "Canadian (Quebec)"
+msgid "local config: %s"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: standalone/drakTermServ:805
#, c-format
msgid ""
-"Mouse device: %s\n"
-""
+"Allow local hardware\n"
+"configuration."
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakTermServ:814
#, c-format
-msgid "Reselect correct fonts"
+msgid "No net boot images created!"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakTermServ:832
#, c-format
-msgid ""
-"Options\n"
-"\n"
-" Here you can choose whether you want to have your machine automatically\n"
-"switch to a graphical interface at boot. Obviously, you want to check\n"
-"\"%s\" if your machine is to act as a server, or if you were not successful\n"
-"in getting the display configured."
+msgid "Thin Client"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakTermServ:836
#, c-format
-msgid "The firmware file for your %s was successfully installed."
+msgid "Allow Thin Clients"
msgstr ""
-#: ../advertising/13-mdkexpert_corporate.pl:1
+#: standalone/drakTermServ:837
#, c-format
-msgid "MandrakeExpert Corporate"
+msgid "Add Client -->"
msgstr ""
-#: ../../standalone.pm:1
+#: standalone/drakTermServ:851
#, c-format
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
+msgid "type: fat"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakTermServ:852
#, c-format
-msgid "Write protection"
+msgid "type: thin"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakTermServ:859
#, c-format
-msgid "You've not selected any font"
+msgid "local config: false"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/drakTermServ:860
#, c-format
-msgid "Language"
+msgid "local config: true"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakTermServ:868
#, c-format
-msgid "Printer model selection"
+msgid "<-- Edit Client"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakTermServ:894
#, c-format
-msgid "After changing type of partition %s, all data on this partition will be lost"
+msgid "Disable Local Config"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/drakTermServ:901
#, c-format
-msgid "ISDN adapters"
+msgid "Delete Client"
msgstr ""
-#: ../../common.pm:1
+#: standalone/drakTermServ:910
#, c-format
-msgid "%d seconds"
+msgid "dhcpd Config..."
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#: standalone/drakTermServ:942
#, c-format
-msgid "Insert a blank floppy in drive %s"
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakTermServ:962
#, c-format
-msgid "A valid URI must be entered!"
+msgid "Subnet:"
msgstr ""
-#: ../../network/isdn.pm:1
+#: standalone/drakTermServ:969
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+msgid "Netmask:"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakTermServ:976
#, c-format
-msgid "Re-configure interface and DHCP server"
+msgid "Routers:"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: standalone/drakTermServ:983
#, c-format
-msgid "Sound configuration"
+msgid "Subnet Mask:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakTermServ:990
#, c-format
-msgid "Photo test page"
+msgid "Broadcast Address:"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: standalone/drakTermServ:997
#, c-format
-msgid "Custom disk partitioning"
+msgid "Domain Name:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakTermServ:1005
#, c-format
-msgid "Enter Printer Name and Comments"
+msgid "Name Servers:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakTermServ:1016
#, c-format
-msgid ""
-"The following printers\n"
-"\n"
-"%s%s\n"
-"are directly connected to your system"
+msgid "IP Range Start:"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: standalone/drakTermServ:1017
#, c-format
-msgid "You don't have any winmodem"
+msgid "IP Range End:"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakTermServ:1069
#, c-format
-msgid "type: %s"
+msgid "dhcpd Server Configuration"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakTermServ:1070
#, c-format
-msgid "Slovakian (QWERTY)"
+msgid ""
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakTermServ:1073
#, c-format
-msgid "This should be a comma-separated list of local users or email addresses that you want the backup results sent to. You will need a functioning mail transfer agent setup on your system."
+msgid "Dynamic IP Address Pool:"
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/drakTermServ:1086
#, c-format
-msgid ""
-"This is DrakUPS, a Mandrake configuration tool for UPS devices.\n"
-"\n"
-"Author:</span> Thierry Vignaud &lt;tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-""
+msgid "Write Config"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakTermServ:1189
#, c-format
-msgid "Install firmware for the"
+msgid "Please insert floppy disk:"
msgstr ""
-#: ../../standalone/draksound:1
+#: standalone/drakTermServ:1193
#, c-format
-msgid "No Sound Card detected!"
+msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#: standalone/drakTermServ:1195
#, c-format
-msgid "Mouse Port"
+msgid "Floppy can be removed now"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakTermServ:1198
#, c-format
-msgid "Check for unsecured accounts"
+msgid "No floppy drive available!"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakTermServ:1207
#, c-format
-msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
+msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/drakTermServ:1209
#, c-format
-msgid "Ftp Server"
+msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakTermServ:1228
#, c-format
-msgid "Uganda"
+msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakTermServ:1457 standalone/drakTermServ:1458 standalone/drakTermServ:1459
#, c-format
-msgid "%s fonts conversion"
+msgid ""
+"%s already in use\n"
+""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakTermServ:1483
#, c-format
-msgid "the type of bus on which the mouse is connected"
+msgid "Can't open %s!"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakTermServ:1511
#, c-format
msgid ""
-"As a review, DrakX will present a summary of information it has about your\n"
-"system. Depending on your installed hardware, you may have some or all of\n"
-"the following entries. Each entry is made up of the configuration item to\n"
-"be configured, followed by a quick summary of the current configuration.\n"
-"Click on the corresponding \"%s\" button to change that.\n"
-"\n"
-" * \"%s\": check the current keyboard map configuration and change that if\n"
-"necessary.\n"
-"\n"
-" * \"%s\": check the current country selection. If you are not in this\n"
-"country, click on the \"%s\" button and choose another one. If your country\n"
-"is not in the first list shown, click the \"%s\" button to get the complete\n"
-"country list.\n"
-"\n"
-" * \"%s\": By default, DrakX deduces your time zone based on the country\n"
-"you have chosen. You can click on the \"%s\" button here if this is not\n"
-"correct.\n"
-"\n"
-" * \"%s\": check the current mouse configuration and click on the button to\n"
-"change it if necessary.\n"
-"\n"
-" * \"%s\": clicking on the \"%s\" button will open the printer\n"
-"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
-"Guide'' for more information on how to setup a new printer. The interface\n"
-"presented there is similar to the one used during installation.\n"
-"\n"
-" * \"%s\": if a sound card is detected on your system, it is displayed\n"
-"here. If you notice the sound card displayed is not the one that is\n"
-"actually present on your system, you can click on the button and choose\n"
-"another driver.\n"
-"\n"
-" * \"%s\": by default, DrakX configures your graphical interface in\n"
-"\"800x600\" or \"1024x768\" resolution. If that does not suit you, click on\n"
-"\"%s\" to reconfigure your graphical interface.\n"
-"\n"
-" * \"%s\": if a TV card is detected on your system, it is displayed here.\n"
-"If you have a TV card and it is not detected, click on \"%s\" to try to\n"
-"configure it manually.\n"
-"\n"
-" * \"%s\": if an ISDN card is detected on your system, it will be displayed\n"
-"here. You can click on \"%s\" to change the parameters associated with the\n"
-"card.\n"
-"\n"
-" * \"%s\": If you want to configure your Internet or local network access\n"
-"now.\n"
-"\n"
-" * \"%s\": this entry allows you to redefine the security level as set in a\n"
-"previous step ().\n"
-"\n"
-" * \"%s\": if you plan to connect your machine to the Internet, it's a good\n"
-"idea to protect yourself from intrusions by setting up a firewall. Consult\n"
-"the corresponding section of the ``Starter Guide'' for details about\n"
-"firewall settings.\n"
-"\n"
-" * \"%s\": if you wish to change your bootloader configuration, click that\n"
-"button. This should be reserved to advanced users.\n"
-"\n"
-" * \"%s\": here you'll be able to fine control which services will be run\n"
-"on your machine. If you plan to use this machine as a server it's a good\n"
-"idea to review this setup."
+"%s not found...\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakTermServ:1539
#, c-format
-msgid "Comoros"
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakTermServ:1672
#, c-format
-msgid "May"
+msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/drakautoinst:37
#, c-format
-msgid "Generic 3 Button Mouse"
+msgid "Error!"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: standalone/drakautoinst:38
#, c-format
-msgid "USA (cable)"
+msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakboot:1
+#: standalone/drakautoinst:40
#, c-format
-msgid ""
-"Can't relaunch LiLo!\n"
-"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgid "Auto Install Configurator"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakautoinst:41
#, c-format
-msgid "Select another media to restore from"
+msgid ""
+"You are about to configure an Auto Install floppy. This feature is somewhat dangerous and must be used circumspectly.\n"
+"\n"
+"With that feature, you will be able to replay the installation you've performed on this computer, being interactively prompted for some steps, in order to change their values.\n"
+"\n"
+"For maximum safety, the partitioning and formatting will never be performed automatically, whatever you chose during the install of this computer.\n"
+"\n"
+"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakautoinst:59
#, c-format
-msgid "Software Manager"
+msgid "replay"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: standalone/drakautoinst:59 standalone/drakautoinst:68
#, c-format
-msgid "Re-submit"
+msgid "manual"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakautoinst:63
#, c-format
-msgid "CD in place - continue."
+msgid "Automatic Steps Configuration"
msgstr ""
-#: ../../common.pm:1
+#: standalone/drakautoinst:64
#, c-format
-msgid "KB"
+msgid "Please choose for each step whether it will replay like your install, or it will be manual"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakautoinst:76 standalone/drakautoinst:77
#, c-format
-msgid "Network & Internet"
+msgid "Creating auto install floppy"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakautoinst:141
#, c-format
-msgid "Lithuanian \"phonetic\" QWERTY"
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakautoinst:235 standalone/drakgw:519 standalone/scannerdrake:361
#, c-format
-msgid "Net Boot Images"
+msgid "Congratulations!"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakautoinst:236
#, c-format
-msgid "Sharing of local scanners"
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: standalone/drakautoinst:273
#, c-format
-msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgid "Auto Install"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakautoinst:342
#, c-format
-msgid "Services and deamons"
+msgid "Add an item"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakautoinst:349
#, c-format
-msgid "It is possible that your %s needs its Firmware to be uploaded everytime when it is turned on."
+msgid "Remove the last item"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:191
#, c-format
-msgid "Remote host name missing!"
+msgid "hd"
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/drakbackup:191
#, c-format
-msgid "with /usr"
+msgid "tape"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#: standalone/drakbackup:263
#, c-format
-msgid "Network"
+msgid "No devices found"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:295
#, c-format
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgid "Expect is an extension to the Tcl scripting language that allows interactive sessions without user intervention."
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:296
#, c-format
-msgid "This password is too simple"
+msgid "Store the password for this system in drakbackup configuration."
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakbackup:297
#, c-format
-msgid "Chkconfig obey msec rules"
+msgid "For a multisession CD, only the first session will erase the cdrw. Otherwise the cdrw is erased before each backup."
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:298
#, c-format
-msgid "Slovakian (QWERTZ)"
+msgid "This uses the same syntax as the command line program 'cdrecord'. 'cdrecord -scanbus' would also show you the device number."
msgstr ""
-#: ../advertising/06-development.pl:1
+#: standalone/drakbackup:299
#, c-format
-msgid "To modify and to create in different languages such as Perl, Python, C and C++ has never been so easy thanks to GNU gcc 3 and the best Open Source development environments."
+msgid "This option will save files that have changed. Exact behavior depends on whether incremental or differential mode is used."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:300
#, c-format
-msgid "No devices found"
+msgid "Incremental backups only save files that have changed or are new since the last backup."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:301
#, c-format
-msgid "Truly minimal install (especially no urpmi)"
+msgid "Differential backups only save files that have changed or are new since the original 'base' backup."
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/drakbackup:302
#, c-format
-msgid "\"%s\" neither is a valid email nor is an existing local user!"
+msgid "This should be a comma-separated list of local users or email addresses that you want the backup results sent to. You will need a functioning mail transfer agent setup on your system."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:303
#, c-format
-msgid "Use daemon"
+msgid "Files or wildcards listed in a .backupignore file at the top of a directory tree will not be backed up."
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../network/netconnect.pm:1 ../../standalone/drakauth:1 ../../standalone/drakconnect:1 ../../standalone/logdrake:1
+#: standalone/drakbackup:304
#, c-format
-msgid "Authentication"
+msgid "For backups to other media, files are still created on the hard drive, then moved to the other media. Enabling this option will remove the hard drive tar files after the backup."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:305
#, c-format
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgid "Some protocols, like rsync, may be configured at the server end. Rather than using a directory path, you would use the 'module' name for the service path."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:306
#, c-format
-msgid "Additional CUPS servers: "
+msgid "Custom allows you to specify your own day and time. The other options use run-parts in /etc/crontab."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:702
#, c-format
-msgid "Choose one of the auto-detected printers from the list or enter the hostname or IP and the optional port number (default is 9100) in the input fields."
+msgid "Interval cron not available as non-root"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:827
#, c-format
-msgid "Where do you want to mount %s?"
+msgid "Valid user list changed, rewriting config file."
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:829
#, c-format
-msgid "Algeria"
+msgid ""
+"Old user list:\n"
+""
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakbackup:831
#, c-format
-msgid "Install/Update firmware files"
+msgid ""
+"New user list:\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:864
#, c-format
-msgid "Restore Via Network"
+msgid "WARNING"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:865
#, c-format
-msgid "Use tar and bzip2 (rather than tar and gzip)"
+msgid "FATAL"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:866
#, c-format
-msgid "Initrd-size"
+msgid "INFO"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakbackup:878
#, c-format
msgid ""
-"In the case that different servers are available for your card, with or\n"
-"without 3D acceleration, you are then asked to choose the server that best\n"
-"suits your needs."
+"\n"
+" DrakBackup Report \n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:879
#, c-format
msgid ""
-"\tBackups use tar and gzip\n"
+"\n"
+" DrakBackup Daemon Report\n"
""
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakbackup:885
#, c-format
-msgid "Set as default"
-msgstr ""
-
-#: ../../Xconfig/card.pm:1
-#, c-format
-msgid "2 MB"
+msgid ""
+"\n"
+" DrakBackup Report Details\n"
+"\n"
+"\n"
+""
msgstr ""
-#: ../../printer/main.pm:1 ../../standalone/printerdrake:1
+#: standalone/drakbackup:907 standalone/drakbackup:980 standalone/drakbackup:1036
#, c-format
-msgid "Configured on this machine"
+msgid "Total progress"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:962
#, c-format
-msgid "Both Control keys simultaneously"
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakhelp:1
+#: standalone/drakbackup:971
#, c-format
-msgid ""
-" --help - display this help \n"
-""
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone.pm:1
+#: standalone/drakbackup:978
#, c-format
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation don't ask first confirmation question in MandrakeUpdate mode\n"
-" --no-verify-rpm don't verify packages signatures\n"
-" --changelog-first display changelog before filelist in the description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:995
#, c-format
-msgid "Setting Default Printer..."
+msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakbackup:996
#, c-format
-msgid "Interface %s (using module %s)"
+msgid "Bad password on %s"
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakbackup:997
#, c-format
-msgid "Generating preview ..."
+msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:998
#, c-format
-msgid "Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes)."
+msgid "Can't find %s on %s"
msgstr ""
-#: ../../standalone/draksec:1
+#: standalone/drakbackup:1001
#, c-format
-msgid "ignore"
+msgid "%s not responding"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:1005
#, c-format
msgid ""
-"Allow/Forbid X connections:\n"
-"\n"
-"- ALL (all connections are allowed),\n"
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-"- LOCAL (only connection from local machine),\n"
+"ssh -i %s %s@%s\n"
"\n"
-"- NONE (no connection)."
+"without being prompted for a password."
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakbackup:1050
#, c-format
-msgid ", multi-function device on parallel port #%s"
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/drakbackup:1054
#, c-format
-msgid "serial"
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/drakbackup:1075
#, c-format
-msgid "DVD-ROM"
+msgid "No CD-R/DVD-R in drive!"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:1079
#, c-format
-msgid "Georgian (\"Latin\" layout)"
+msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../advertising/09-mdksecure.pl:1
+#: standalone/drakbackup:1083
#, c-format
-msgid "Get the best items with Mandrake Linux Strategic partners"
+msgid "Not erasable media!"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: standalone/drakbackup:1124
#, c-format
-msgid ""
-"You may now provide options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:1199
#, c-format
-msgid "Kenya"
+msgid "Permission problem accessing CD."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: standalone/drakbackup:1226
#, c-format
-msgid "Use ``Unmount'' first"
+msgid "No tape in %s!"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:1330
#, c-format
-msgid "Installing mtools packages..."
+msgid ""
+"Backup quota exceeded!\n"
+"%d MB used vs %d MB allocated."
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:1350 standalone/drakbackup:1409
#, c-format
-msgid "You must specify a root partition"
+msgid "Backup system files..."
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakbackup:1410 standalone/drakbackup:1477
#, c-format
-msgid "first step creation"
+msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:1476
#, c-format
-msgid "Both Shift keys simultaneously"
+msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakhelp:1
+#: standalone/drakbackup:1540
#, c-format
-msgid ""
-" --id <id_label> - load the html help page which refers to id_label\n"
-""
+msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakbackup:1541
#, c-format
-msgid "Do not install firmware file"
+msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakbackup:1546
#, c-format
-msgid "Select a scanner model"
+msgid "No changes to backup!"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:1564 standalone/drakbackup:1587
#, c-format
-msgid "Accept/Refuse bogus IPv4 error messages."
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+""
msgstr ""
-#: ../../printer/data.pm:1
+#: standalone/drakbackup:1571
#, c-format
-msgid "LPRng - LPR New Generation"
+msgid ""
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: standalone/drakbackup:1574
#, c-format
-msgid "Drakbackup Configuration"
+msgid ""
+"\n"
+" FTP connection problem: It was not possible to send your backup files by FTP.\n"
+""
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/drakbackup:1592
#, c-format
-msgid "Save as.."
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:1597
#, c-format
-msgid "Korea (North)"
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+""
msgstr ""
-#: ../../install_gtk.pm:1
+#: standalone/drakbackup:1607
#, c-format
-msgid "System configuration"
+msgid ""
+" Error while sending mail. \n"
+""
msgstr ""
-#: ../../any.pm:1 ../../security/l10n.pm:1
+#: standalone/drakbackup:1636
#, c-format
-msgid "Autologin"
+msgid "Can't create catalog!"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:1722
#, c-format
-msgid "Domain Admin Password"
+msgid "Can't create log file!"
msgstr ""
-#: ../advertising/05-desktop.pl:1
+#: standalone/drakbackup:1739 standalone/drakbackup:1750 standalone/drakfont:707
#, c-format
-msgid "Perfectly adapt your computer to your needs thanks to the 11 available Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME 2.2, Window Maker, ..."
+msgid "File Selection"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:1778
#, c-format
-msgid "Configuring printer ..."
+msgid "Select the files or directories and click on 'OK'"
msgstr ""
-#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:1806
#, c-format
msgid ""
-"To ensure data integrity after resizing the partition(s), \n"
-"filesystem checks will be run on your next boot into Windows(TM)"
+"\n"
+"Please check all options that you need.\n"
+""
msgstr ""
-#: ../../common.pm:1
+#: standalone/drakbackup:1807
#, c-format
-msgid "MB"
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+""
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:1808
#, c-format
-msgid "if set to yes, run some checks against the rpm database."
+msgid "Backup your System files. (/etc directory)"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:1809 standalone/drakbackup:1873 standalone/drakbackup:1939
#, c-format
-msgid "Virgin Islands (British)"
+msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:1811 standalone/drakbackup:1875 standalone/drakbackup:1941
#, c-format
-msgid "Bermuda"
+msgid "Use Incremental Backups"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakbackup:1811 standalone/drakbackup:1875 standalone/drakbackup:1941
#, c-format
-msgid "click here if you are sure."
+msgid "Use Differential Backups"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:1813
#, c-format
-msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakbackup:1814
#, c-format
msgid ""
-"Listed here are the existing Linux partitions detected on your hard drive.\n"
-"You can keep the choices made by the wizard, since they are good for most\n"
-"common installations. If you make any changes, you must at least define a\n"
-"root partition (\"/\"). Do not choose too small a partition or you will not\n"
-"be able to install enough software. If you want to store your data on a\n"
-"separate partition, you will also need to create a \"/home\" partition\n"
-"(only possible if you have more than one Linux partition available).\n"
-"\n"
-"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
-"\n"
-"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
-"\"partition number\" (for example, \"hda1\").\n"
-"\n"
-"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
-"\"sd\" if it is a SCSI hard drive.\n"
-"\n"
-"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
-"hard drives:\n"
-"\n"
-" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
-"\n"
-" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
-"\n"
-" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
-"\n"
-"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
-"\"second lowest SCSI ID\", etc."
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/drakups:1
+#: standalone/drakbackup:1845
#, c-format
-msgid "Remove"
+msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:1872
#, c-format
-msgid "Lesotho"
+msgid "Do not include the browser cache"
msgstr ""
-#: ../../ugtk2.pm:1
+#: standalone/drakbackup:1927 standalone/drakfont:752
#, c-format
-msgid "utopia 25"
+msgid "Remove Selected"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakbackup:1988
#, c-format
-msgid "Pipe job into a command"
+msgid "Windows (FAT32)"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: standalone/drakbackup:2023
#, c-format
-msgid "Remove system config files"
+msgid "Users"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:2048
#, c-format
-msgid "Cote d'Ivoire"
+msgid "Use network connection to backup"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakbackup:2050
#, c-format
-msgid "new dynamic device name generated by core kernel devfs"
+msgid "Net Method:"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../network/netconnect.pm:1 ../../standalone/drakgw:1 ../../standalone/drakgw:1 ../../standalone/drakgw:1 ../../standalone/drakgw:1 ../../standalone/harddrake2:1
+#: standalone/drakbackup:2054
#, c-format
-msgid "Yes"
+msgid "Use Expect for SSH"
msgstr ""
-#: ../../network/isdn.pm:1
+#: standalone/drakbackup:2055
#, c-format
-msgid "Which protocol do you want to use?"
+msgid "Create/Transfer backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:2057
#, c-format
-msgid "Restore Progress"
+msgid "Transfer Now"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:2059
#, c-format
-msgid "Estonia"
+msgid "Other (not drakbackup) keys in place already"
msgstr ""
-#: ../../partition_table.pm:1
+#: standalone/drakbackup:2062
#, c-format
-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."
+msgid "Host name or IP."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakbackup:2067
#, c-format
-msgid "Choose the host on which the local scanners should be made available:"
+msgid "Directory (or module) to put the backup on this host."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakbackup:2072
#, c-format
-msgid "Channel"
+msgid "Login name"
msgstr ""
-#: ../../help.pm:1 ../../interactive.pm:1 ../../interactive/gtk.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/drakups:1
+#: standalone/drakbackup:2079
#, c-format
-msgid "Add"
+msgid "Remember this password"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:2091
#, c-format
-msgid ""
-" Error while sending mail. \n"
-""
+msgid "Need hostname, username and password!"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#: standalone/drakbackup:2192
#, c-format
-msgid "Keyboard"
+msgid "Use CD-R/DVD-R to backup"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:2195
#, c-format
-msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+msgid "Choose your CD/DVD device"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:2200
#, c-format
-msgid "Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes)."
+msgid "Choose your CD/DVD media size"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:2207
#, c-format
-msgid "Choose the connection you want to configure"
+msgid "Multisession CD"
msgstr ""
-#: ../../standalone/draksec:1
+#: standalone/drakbackup:2209
#, c-format
-msgid "Please wait, setting security level..."
+msgid "CDRW media"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:2214
#, c-format
-msgid "Configuring network device %s"
+msgid "Erase your RW media (1st Session)"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:2215
#, c-format
-msgid "activated"
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakpxe:1
+#: standalone/drakbackup:2222
#, c-format
-msgid "Please choose which network interface will be used for the dhcp server."
+msgid "DVD+RW media"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:2224
#, c-format
-msgid "Finding packages to upgrade..."
+msgid "DVD-R media"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:2226
#, c-format
-msgid "Mount point: "
+msgid "DVDRAM device"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakbackup:2238
#, c-format
-msgid "parse all fonts"
+msgid ""
+"Enter your CD Writer device name\n"
+" ex: 0,1,0"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:2270
#, c-format
-msgid "Allow/Forbid direct root login."
+msgid "No CD device defined!"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:2324
#, c-format
-msgid " Accept/Refuse broadcasted icmp echo."
+msgid "Use tape to backup"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:2327
#, c-format
-msgid "With X"
+msgid "Device name to use for backup"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: standalone/drakbackup:2335
#, c-format
-msgid "Multi-head configuration"
+msgid "Don't rewind tape after backup"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakbackup:2341
#, c-format
-msgid "No browser available! Please install one"
+msgid "Erase tape before backup"
msgstr ""
-#: ../../Xconfig/main.pm:1
+#: standalone/drakbackup:2347
#, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
+msgid "Eject tape after the backup"
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/drakbackup:2422
#, c-format
-msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgid "Enter the directory to save to:"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakbackup:2431
#, c-format
msgid ""
-"The rwho protocol lets remote users get a list of all of the users\n"
-"logged into a machine running the rwho daemon (similiar to finger)."
+"Maximum size\n"
+" allowed for Drakbackup (MB)"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: standalone/drakbackup:2513
#, c-format
-msgid "Domain name"
+msgid "CD-R / DVD-R"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2518
#, c-format
-msgid "Sharing of local printers"
+msgid "HardDrive / NFS"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:2534 standalone/drakbackup:2539 standalone/drakbackup:2544
#, c-format
-msgid "Enable/Disable libsafe if libsafe is found on the system."
+msgid "hourly"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2535 standalone/drakbackup:2540 standalone/drakbackup:2544
#, c-format
-msgid "Available printers"
+msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:2536 standalone/drakbackup:2541 standalone/drakbackup:2544
#, c-format
-msgid "NO"
+msgid "weekly"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:2537 standalone/drakbackup:2542 standalone/drakbackup:2544
#, c-format
-msgid "Empty"
+msgid "monthly"
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakbackup:2538 standalone/drakbackup:2543 standalone/drakbackup:2544
#, c-format
-msgid "text width"
+msgid "custom"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:2549
#, c-format
-msgid "Where do you want to mount device %s?"
+msgid "January"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakbackup:2549
#, c-format
-msgid "The default lease (in seconds)"
+msgid "February"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:2549
#, c-format
-msgid "Sensitivity threshold"
+msgid "March"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakbackup:2550
#, c-format
-msgid "Select the network interface to remove:"
+msgid "April"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:2550
#, c-format
-msgid ""
-"We are now going to configure the %s connection.\n"
-"\n"
-"\n"
-"Press \"%s\" to continue."
+msgid "May"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2550
#, c-format
-msgid "Interface \"%s\""
+msgid "June"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:2550
#, c-format
-msgid "With basic documentation (recommended!)"
+msgid "July"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#: standalone/drakbackup:2550
#, c-format
-msgid "1 button"
+msgid "August"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2550
#, c-format
-msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+msgid "September"
msgstr ""
-#: ../../Xconfig/main.pm:1
+#: standalone/drakbackup:2551
#, c-format
-msgid "Test"
+msgid "October"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:2551
#, c-format
-msgid "Korea"
+msgid "November"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: standalone/drakbackup:2551
#, c-format
-msgid "Your choice? (default `%s'%s) "
+msgid "December"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2556
#, c-format
-msgid "Raw printer"
+msgid "Sunday"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakbackup:2556
#, c-format
-msgid "official vendor name of the cpu"
+msgid "Monday"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakbackup:2556
#, c-format
-msgid "Useless without Terminal Server"
+msgid "Tuesday"
msgstr ""
-#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1 ../../standalone/harddrake2:1
+#: standalone/drakbackup:2557
#, c-format
-msgid "Vendor"
+msgid "Wednesday"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakbackup:2557
#, c-format
-msgid "Interface %s"
+msgid "Thursday"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/drakbackup:2557
#, c-format
-msgid "Configure mouse"
+msgid "Friday"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:2557
#, c-format
-msgid "Choose the mount points"
+msgid "Saturday"
msgstr ""
-#: ../../help.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1
+#: standalone/drakbackup:2593
#, c-format
-msgid "OK"
+msgid "Use daemon"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:2598
#, c-format
-msgid "Yugoslavian (latin)"
+msgid "Please choose the time interval between each backup"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:2604
#, c-format
-msgid "Installing"
+msgid "Custom setup/crontab entry:"
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/drakbackup:2609
#, c-format
-msgid "Logitech MouseMan with Wheel emulation"
+msgid "Minute"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:2613
#, c-format
-msgid "Launch userdrake"
+msgid "Hour"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:2617
#, c-format
-msgid "Is this an install or an upgrade?"
+msgid "Day"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakbackup:2621
#, c-format
-msgid "ISDN card"
+msgid "Month"
msgstr ""
-#: ../advertising/02-community.pl:1
+#: standalone/drakbackup:2625
#, c-format
-msgid "To share your own knowledge and help build Linux software, join our discussion forums on our \"Community\" webpages."
+msgid "Weekday"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:2635
#, c-format
-msgid ""
-"\t-Hard drive.\n"
-""
+msgid "Please choose the media for backup."
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakbackup:2642
#, c-format
-msgid ""
-"This step is activated only if an old GNU/Linux partition has been found on\n"
-"your machine.\n"
-"\n"
-"DrakX now needs to know if you want to perform a new install or an upgrade\n"
-"of an existing Mandrake Linux system:\n"
-"\n"
-" * \"%s\": For the most part, this completely wipes out the old system. If\n"
-"you wish to change how your hard drives are partitioned, or change the file\n"
-"system, you should use this option. However, depending on your partitioning\n"
-"scheme, you can prevent some of your existing data from being over-written.\n"
-"\n"
-" * \"%s\": this installation class allows you to update the packages\n"
-"currently installed on your Mandrake Linux system. Your current\n"
-"partitioning scheme and user data is not altered. Most of other\n"
-"configuration steps remain available, similar to a standard installation.\n"
-"\n"
-"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
-"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
-"to Mandrake Linux version \"8.1\" is not recommended."
+msgid "Please be sure that the cron daemon is included in your services."
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakbackup:2643
#, c-format
-msgid ""
-"\n"
-" Copyright (C) 2001-2002 by MandrakeSoft \n"
-" DUPONT Sebastien (original version)\n"
-" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
-"\n"
-" This program is free software; you can redistribute it and/or modify\n"
-" it under the terms of the GNU General Public License as published by\n"
-" the Free Software Foundation; either version 2, or (at your option)\n"
-" any later version.\n"
-"\n"
-" This program is distributed in the hope that it will be useful,\n"
-" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-" GNU General Public License for more details.\n"
-"\n"
-" You should have received a copy of the GNU General Public License\n"
-" along with this program; if not, write to the Free Software\n"
-" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-"\n"
-" Thanks:\n"
-" - pfm2afm: \n"
-"\t by Ken Borgendale:\n"
-"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
-" - type1inst:\n"
-"\t by James Macnicol: \n"
-"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
-" - ttf2pt1: \n"
-"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
-" Convert ttf font files to afm and pfb fonts\n"
-""
+msgid "Note that currently all 'net' media also use the hard drive."
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakbackup:2698
#, c-format
-msgid "Printer on remote CUPS server"
+msgid "Use tar and bzip2 (rather than tar and gzip)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2699
#, c-format
-msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgid "Use .backupignore files"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakbackup:2702
#, c-format
-msgid "here if no."
+msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:2708
#, c-format
-msgid "DHCP host name"
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakbackup:2745
#, c-format
-msgid "The maximum lease (in seconds)"
+msgid "What"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#: standalone/drakbackup:2750
#, c-format
-msgid "Please choose which serial port your mouse is connected to."
+msgid "Where"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2755
#, c-format
-msgid "Did it work properly?"
+msgid "When"
msgstr ""
-#: ../../fs.pm:1
+#: standalone/drakbackup:2760
#, c-format
-msgid "Mount the file system read-only."
+msgid "More Options"
msgstr ""
-#: ../../security/level.pm:1
+#: standalone/drakbackup:2781 standalone/drakbackup:4973
#, c-format
-msgid "Poor"
+msgid "Drakbackup Configuration"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakbackup:2798
#, c-format
-msgid "Report check result by mail"
+msgid "Please choose where you want to backup"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:2800
#, c-format
-msgid "Grenada"
+msgid "On Hard Drive"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakbackup:2810
#, c-format
-msgid "The DHCP start range"
+msgid "Across Network"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:2820
#, c-format
-msgid "Unsafe"
+msgid "On CD-R"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: standalone/drakbackup:2830
#, c-format
-msgid "SSH server"
+msgid "On Tape Device"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:2881
#, c-format
-msgid ", %s sectors"
+msgid "Backup Users"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_any.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../network/netconnect.pm:1 ../../standalone/harddrake2:1
+#: standalone/drakbackup:2882
#, c-format
-msgid "No"
+msgid " (Default is all users)"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:2894
#, c-format
-msgid "Guadeloupe"
+msgid "Please choose what you want to backup"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:2895
#, c-format
-msgid "Kannada"
+msgid "Backup System"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakbackup:2897
#, c-format
-msgid ""
-"could not find any font.\n"
-""
+msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/drakups:1
+#: standalone/drakbackup:2985
#, c-format
-msgid "UPS driver configuration"
+msgid ""
+"\n"
+"Backup Sources: \n"
+""
msgstr ""
-#: ../../standalone/keyboarddrake:1
+#: standalone/drakbackup:2986
#, c-format
-msgid "Do you want the BackSpace to return Delete in console?"
+msgid ""
+"\n"
+"- System Files:\n"
+""
msgstr ""
-#: ../../Xconfig/monitor.pm:1
+#: standalone/drakbackup:2988
#, c-format
-msgid "Vertical refresh rate"
+msgid ""
+"\n"
+"- User Files:\n"
+""
msgstr ""
-#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#: standalone/drakbackup:2990
#, c-format
msgid ""
-"Entering step `%s'\n"
+"\n"
+"- Other Files:\n"
""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:2992
#, c-format
-msgid "Niger"
+msgid ""
+"\n"
+"- Save on Hard drive on path: %s\n"
+""
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/drakbackup:2993
#, c-format
-msgid "Logitech MouseMan"
+msgid ""
+"\tLimit disk usage to %s MB\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:2996
#, c-format
-msgid "Removing %s ..."
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:3000
#, c-format
-msgid "No printer"
+msgid "NO"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:3001
#, c-format
-msgid "NetWare Printer Options"
+msgid "YES"
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakbackup:3002
#, c-format
-msgid "%s BootSplash (%s) preview"
+msgid ""
+"\n"
+"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3003
#, c-format
-msgid "February"
+msgid "RW"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/drakbackup:3004
#, c-format
-msgid "General"
+msgid " on device: %s"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/drakbackup:3005
#, c-format
-msgid "Add a user"
+msgid " (multi-session)"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakbackup:3006
#, c-format
-msgid "/etc/issue* exist"
+msgid ""
+"\n"
+"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakbackup:3007
#, c-format
-msgid "Network configuration (%d adapters)"
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3010
#, c-format
-msgid "April"
+msgid ""
+"\n"
+"- Save via %s on host: %s\n"
+""
msgstr ""
-#: ../../scanner.pm:1
+#: standalone/drakbackup:3011
#, c-format
-msgid "Could not create directory /usr/share/sane/firmware!"
+msgid ""
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
+""
msgstr ""
-#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
+#: standalone/drakbackup:3012
#, c-format
-msgid "Mandatory package %s is missing"
+msgid ""
+"\n"
+"- Options:\n"
+""
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakbackup:3013
#, c-format
-msgid "Deactivate now"
+msgid ""
+"\tDo not include System Files\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:3016
#, c-format
-msgid "Philippines"
+msgid ""
+"\tBackups use tar and bzip2\n"
+""
msgstr ""
-#: ../../interactive.pm:1 ../../ugtk2.pm:1 ../../ugtk2.pm:1 ../../ugtk2.pm:1 ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/gtk.pm:1 ../../interactive/http.pm:1 ../../interactive/http.pm:1 ../../interactive/newt.pm:1 ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakboot:1 ../../standalone/drakclock:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1 ../../standalone/drakfloppy:1 ../../standalone/drakperm:1 ../../standalone/drakperm:1 ../../standalone/draksec:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/mousedrake:1 ../../standalone/net_monitor:1
+#: standalone/drakbackup:3018
#, c-format
-msgid "Ok"
+msgid ""
+"\tBackups use tar and gzip\n"
+""
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakbackup:3021
#, c-format
-msgid "drakTermServ Overview"
+msgid ""
+"\tUse .backupignore files\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:3022
#, c-format
-msgid "Print Queue Name"
+msgid ""
+"\tSend mail to %s\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:3024
#, c-format
-msgid "Do you want to use aboot?"
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+""
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:3025
#, c-format
-msgid "Belarusian"
+msgid ""
+"\t-Hard drive.\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:3026
#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP printers.\n"
+"\t-CD-R.\n"
""
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:3027
#, c-format
-msgid "Move files to the new partition"
+msgid ""
+"\t-Tape \n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:3028
#, c-format
-msgid "Add here the CUPS servers whose printers you want to use. You only need to do this if the servers do not broadcast their printer information into the local network."
+msgid ""
+"\t-Network by FTP.\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:3029
#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this computer.\n"
-"\n"
-"Please plug in and turn on all printers connected to this machine so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
+"\t-Network by SSH.\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:3030
#, c-format
-msgid "Pitcairn"
+msgid ""
+"\t-Network by rsync.\n"
+""
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/drakbackup:3031
#, c-format
-msgid "The port on which is connected your ups"
+msgid ""
+"\t-Network by webdav.\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3033
#, c-format
-msgid "Restore From Catalog"
+msgid ""
+"No configuration, please click Wizard or Advanced.\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:3039
#, c-format
-msgid "IDE"
+msgid ""
+"List of data to restore:\n"
+"\n"
+""
msgstr ""
-#: ../../fs.pm:1 ../../fs.pm:1
+#: standalone/drakbackup:3208
#, c-format
-msgid "mounting partition %s in directory %s failed"
+msgid ""
+"List of data corrupted:\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakboot:1
+#: standalone/drakbackup:3210
#, c-format
-msgid "Lilo screen"
+msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../bootloader.pm:1 ../../help.pm:1
+#: standalone/drakbackup:3220
#, c-format
-msgid "LILO with graphical menu"
+msgid "Backup files are corrupted"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakbackup:3241
#, c-format
-msgid "Estimating"
+msgid " All of your selected data have been "
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakbackup:3242
#, c-format
-msgid "You can't unselect this package. It is already installed"
+msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:3358
#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgid " Restore Configuration "
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:3376
#, c-format
-msgid "Go on anyway?"
+msgid "OK to restore the other files."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbackup:3393
#, c-format
-msgid "Looking for available packages and rebuilding rpm database..."
+msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3471
#, c-format
-msgid ""
-"\n"
-" DrakBackup Report \n"
-""
+msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3473
#, c-format
-msgid "Does not appear to be recordable media!"
+msgid "please choose the date to restore"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: standalone/drakbackup:3510
#, c-format
-msgid "Specify options"
+msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:3513
#, c-format
-msgid "Vanuatu"
+msgid "Enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3521
#, c-format
msgid ""
-"New user list:\n"
-""
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid "Either the server name or the server's IP must be given!"
+"Enter the maximum size\n"
+" allowed for Drakbackup (MB)"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:3527
#, c-format
-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 install\n"
-"SILO on your system, or another operating system removes SILO, or SILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used with\n"
-"the Mandrake rescue image, making it much easier to recover from severe system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the first\n"
-"drive and press \"Ok\"."
+msgid "Use quota for backup files."
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/drakbackup:3553
#, c-format
-msgid "You can't use an encrypted file system for mount point %s"
+msgid "Restore from Hard Disk."
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:3555
#, c-format
-msgid "Set the password history length to prevent password reuse."
+msgid "Enter the directory where backups are stored"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:3624
#, c-format
-msgid "Norfolk Island"
+msgid "Select another media to restore from"
msgstr ""
-#: ../../standalone/drakboot:1
+#: standalone/drakbackup:3626
#, c-format
-msgid "Theme installation failed!"
+msgid "Other Media"
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/drakbackup:3631
#, c-format
-msgid "Nothing to do"
+msgid "Restore system"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:3632
#, c-format
-msgid "Use for loopback"
+msgid "Restore Users"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakbackup:3633
#, c-format
-msgid "Mandrake Bug Report Tool"
+msgid "Restore Other"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakbackup:3635
#, c-format
-msgid "Apply filter"
+msgid "select path to restore (instead of /)"
msgstr ""
-#: ../../network/adsl.pm:1
+#: standalone/drakbackup:3639
#, c-format
-msgid "use pppoe"
+msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:3641
#, c-format
-msgid "Moving files to the new partition"
+msgid "Remove user directories before restore."
msgstr ""
-#: ../../Xconfig/card.pm:1 ../../Xconfig/card.pm:1
+#: standalone/drakbackup:3703
#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgid "Filename text to search for:"
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../interactive.pm:1
+#: standalone/drakbackup:3706
#, c-format
-msgid "Advanced"
+msgid "Search Backups"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:3723
#, c-format
-msgid "Transfer"
+msgid "Restore Selected"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:3846
#, c-format
-msgid "Dvorak (Swedish)"
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:3855
#, c-format
-msgid "Afghanistan"
+msgid ""
+"Restore Selected\n"
+"Files"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3871
#, c-format
-msgid "More Options"
+msgid ""
+"Change\n"
+"Restore Path"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3937
#, c-format
-msgid "Delete Hard Drive tar files after backup to other media."
+msgid "Backup files not found at %s."
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbackup:3950
#, c-format
-msgid "Burundi"
+msgid "Restore From CD"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakbackup:3950
#, c-format
msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the basic\n"
-"UNIX cron, including better security and more powerful configuration options."
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakbackup:3952
#, c-format
-msgid "Add Client -->"
+msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:3962
#, c-format
-msgid "Read carefully!"
+msgid "Restore From Tape"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:3962
#, c-format
-msgid "RW"
+msgid ""
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: standalone/drakbackup:3964
#, c-format
-msgid ""
-"Please,\n"
-"type in your tv norm and country"
+msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:3984
#, c-format
-msgid "RTS/CTS"
+msgid "Restore Via Network"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1
+#: standalone/drakbackup:3984
#, c-format
-msgid "Port"
+msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakbackup:3985
#, c-format
-msgid "No (experts only)"
+msgid "Host Name"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakbackup:3986
#, c-format
-msgid "No kernel selected!"
+msgid "Host Path or Module"
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:1
+#: standalone/drakbackup:3993
#, c-format
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgid "Password required"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakbackup:3999
#, c-format
-msgid "Set-GID"
+msgid "Username required"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbackup:4002
#, c-format
-msgid "The encryption keys do not match"
+msgid "Hostname required"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:4007
#, c-format
-msgid "For a multisession CD, only the first session will erase the cdrw. Otherwise the cdrw is erased before each backup."
+msgid "Path or Module required"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakbackup:4020
#, c-format
-msgid "USB printer"
+msgid "Files Restored..."
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbackup:4023
#, c-format
-msgid "Right \"Windows\" key"
+msgid "Restore Failed..."
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: standalone/drakbackup:4258 standalone/drakbackup:4327
#, c-format
-msgid "Detect USB key again"
+msgid "Search for files to restore"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbackup:4263
#, c-format
-msgid "if set to yes, check empty password in /etc/shadow."
+msgid "Restore all backups"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakbackup:4272
#, c-format
-msgid ""
-"Before continuing, you should carefully read the terms of the license. It\n"
-"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
-"terms in it, check the \"%s\" box. If not, simply turn off your computer."
+msgid "Custom Restore"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:4295
#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
-"\n"
+"Unable to find backups to restore...\n"
""
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: standalone/drakbackup:4296
#, c-format
-msgid "Resolutions"
+msgid "Verify that %s is the correct path"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakbackup:4297
#, c-format
-msgid "It is possible that your scanners need their firmware to be uploaded everytime when they are turned on."
+msgid " and the CD is in the drive"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: standalone/drakbackup:4299
#, c-format
-msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful and dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
+msgid "Backups on unmountable media - Use Catalog to restore"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: standalone/drakbackup:4315
#, c-format
-msgid "Please enter your username, password and domain name to access this host."
+msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakbackup:4320
#, c-format
-msgid "Remove selected host"
+msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakbackup:4323
#, c-format
-msgid "/Autodetect _jaz drives"
+msgid "Restore From Catalog"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:4357
#, c-format
-msgid "No sharing"
+msgid "Restore Progress"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakbackup:4391 standalone/drakbackup:4503 standalone/logdrake:172
#, c-format
-msgid "Move selected rule down one level"
+msgid "Save"
msgstr ""
-#: ../../common.pm:1
+#: standalone/drakbackup:4477
#, c-format
-msgid "TB"
+msgid "Build Backup"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:4529 standalone/drakbackup:5088
#, c-format
-msgid "FATAL"
+msgid "Restore"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakbackup:4711
#, c-format
-msgid "Refresh the list"
+msgid ""
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakbackup:4717
#, c-format
msgid ""
-" - Per client %s:\n"
-" \tThrough clusternfs, each diskless client can have its own unique configuration files\n"
-" \ton the root filesystem of the server. By allowing local client hardware configuration, \n"
-" \tdrakTermServ will help create these files."
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakpxe:1
+#: standalone/drakbackup:4731
#, c-format
msgid ""
-"The DHCP server will allow other computer to boot using PXE in the given range of address.\n"
-"\n"
-"The network address is %s using a netmask of %s.\n"
-"\n"
+"The following packages need to be installed:\n"
""
msgstr ""
-#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1 ../../standalone/drakperm:1 ../../standalone/printerdrake:1
+#: standalone/drakbackup:4754
#, c-format
-msgid "Delete"
+msgid "Please select data to restore..."
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: standalone/drakbackup:4789
#, c-format
-msgid ""
-"I can setup your computer to automatically start the graphical interface (XFree) upon booting.\n"
-"Would you like XFree to start when you reboot?"
+msgid "Please select media for backup..."
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/drakbackup:4797
#, c-format
-msgid "Build the disk"
+msgid "Please select data to backup..."
msgstr ""
-#: ../../standalone/net_monitor:1
+#: standalone/drakbackup:4815
#, c-format
-msgid "Disconnect %s"
+msgid "%s"
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/drakbackup:4826
#, c-format
msgid ""
-"Welcome to the UPS configuration utility.\n"
-"\n"
-"Here, you'll be add a new UPS to your system.\n"
-""
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakbackup:4830
#, c-format
-msgid "Status:"
+msgid "Under Devel ... please wait."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakbackup:4904
#, c-format
-msgid "HTTP proxy"
+msgid "Backup system files"
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/drakbackup:4907
#, c-format
-msgid "SSH Server"
+msgid "Backup user files"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:4910
#, c-format
-msgid ""
-"\t-Network by rsync.\n"
-""
+msgid "Backup other files"
msgstr ""
-#: ../../network/isdn.pm:1
+#: standalone/drakbackup:4913 standalone/drakbackup:4949
#, c-format
-msgid "European protocol"
+msgid "Total Progress"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:4941
#, c-format
-msgid ", printer \"%s\" on server \"%s\""
+msgid "Sending files by FTP"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbackup:4944
#, c-format
-msgid "Note that currently all 'net' media also use the hard drive."
+msgid "Sending files..."
msgstr ""
-#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1 ../../install_steps.pm:1 ../../wizards.pm:1 ../../wizards.pm:1 ../../wizards.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1 ../../interactive/http.pm:1 ../../standalone/drakauth:1 ../../standalone/drakboot:1 ../../standalone/drakboot:1 ../../standalone/drakboot:1 ../../standalone/drakboot:1 ../../standalone/drakboot:1 ../../standalone/drakboot:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakbug:1 ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1 ../../standalone/drakfloppy:1 ../../standalone/drakfloppy:1 ../../standalone/drakfont:1 ../../standalone/draksplash:1 ../../standalone/logdrake:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/tree/mdk_totem:1
+#: standalone/drakbackup:5031
#, c-format
-msgid "Error"
+msgid "Backup Now from configuration file"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbackup:5036
#, c-format
-msgid "allow \"su\""
+msgid "View Backup Configuration."
msgstr ""
-#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#: standalone/drakbackup:5062
#, c-format
-msgid "Australia"
+msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakbackup:5067
#, c-format
-msgid "please wait during ttmkfdir..."
+msgid "Advanced Configuration"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: standalone/drakbackup:5072
#, c-format
-msgid "Configure only card \"%s\"%s"
+msgid "View Configuration"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1
+#: standalone/drakbackup:5076
#, c-format
-msgid "Level"
+msgid "View Last Log"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakbackup:5081
#, c-format
-msgid "Change the printing system"
+msgid "Backup Now"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: standalone/drakbackup:5118 standalone/drakbackup:5124
#, c-format
-msgid ""
-"Your system supports multiple head configuration.\n"
-"What do you want to do?"
+msgid "Drakbackup"
msgstr ""
-#: ../../partition_table.pm:1
+#: standalone/drakboot:56
#, c-format
-msgid "mount failed: "
+msgid "Boot Style Configuration"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/drakboot:66 standalone/drakfloppy:46 standalone/drakups:183 standalone/drakups:184 standalone/harddrake2:97 standalone/harddrake2:98 standalone/logdrake:67 standalone/printerdrake:147 standalone/printerdrake:148 standalone/printerdrake:149
#, c-format
-msgid "Configure services"
+msgid "/_File"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakboot:67 standalone/drakfloppy:47 standalone/logdrake:73
#, c-format
-msgid "Broadcast Address:"
+msgid "/File/_Quit"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakboot:67 standalone/drakfloppy:47 standalone/drakups:184 standalone/harddrake2:98 standalone/logdrake:73 standalone/printerdrake:149
#, c-format
-msgid "the GNU/Linux kernel needs to run a calculation loop at boot time to initialize a timer counter. Its result is stored as bogomips as a way to \"benchmark\" the cpu."
+msgid "<control>Q"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakboot:126
#, c-format
-msgid "Image"
+msgid "Install themes"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakboot:127
#, c-format
-msgid "Remote Administration"
+msgid ""
+"Display theme\n"
+"under console"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakboot:128
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgid "Create new theme"
msgstr ""
-#: ../../modules.pm:1
+#: standalone/drakboot:174
#, c-format
-msgid "PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
+msgid "Lilo message not found"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakboot:204
#, c-format
-msgid "Selected All"
+msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../printer/data.pm:1
+#: standalone/drakboot:206
#, c-format
-msgid "CUPS - Common Unix Printing System"
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/drakboot:218
#, c-format
-msgid "Webmin Service"
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakboot:225
#, c-format
-msgid "device"
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakboot:229 standalone/draksplash:156 standalone/draksplash:320 standalone/draksplash:448
#, c-format
-msgid "Enter the directory to save to:"
+msgid "Notice"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
+#: standalone/drakboot:230
#, c-format
-msgid "Greece"
+msgid "Theme installation failed!"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../standalone/drakxtv:1
+#: standalone/drakboot:230
#, c-format
-msgid "All"
+msgid "LiLo and Bootsplash themes installation successful"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakboot:239
#, c-format
-msgid "Which printing system (spooler) do you want to use?"
+msgid "Splash selection"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakboot:242
#, c-format
-msgid "July"
+msgid "Themes"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakboot:244
#, c-format
-msgid "Prints into %s"
+msgid ""
+"\n"
+"Select the theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separately"
msgstr ""
-#: ../../install_steps_interactive.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: standalone/drakboot:248
#, c-format
-msgid "An error occurred"
+msgid "Lilo screen"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakboot:254
#, c-format
-msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
+msgid "Bootsplash"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakboot:260
#, c-format
-msgid "Tamil (Typewriter-layout)"
+msgid "System mode"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakboot:262
#, c-format
-msgid "Use password to authenticate users."
+msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakboot:268
#, c-format
-msgid "Allow/Forbid the list of users on the system on display managers (kdm and gdm)."
+msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../standalone/drakautoinst:1 ../../standalone/drakautoinst:1
+#: standalone/drakboot:268
#, c-format
-msgid "manual"
+msgid "No, I don't want autologin"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakboot:274
#, c-format
-msgid "Filename text to search for:"
+msgid "Default user"
msgstr ""
-#: ../../standalone/drakclock:1
+#: standalone/drakboot:275
#, c-format
-msgid "Reset"
+msgid "Default desktop"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakboot:328
#, c-format
-msgid "Printer manufacturer, model, driver"
+msgid "Installation of %s failed. The following error occured:"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/drakbug:40
#, c-format
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will be \n"
+"transferred to that server."
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbug:48
#, c-format
-msgid ""
-"Directory %s already contains data\n"
-"(%s)"
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakbug:53
#, c-format
-msgid "Printer on NetWare server"
+msgid "Mandrake Control Center"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbug:54
#, c-format
-msgid "Give the ram size in MB"
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbug:55
#, c-format
-msgid "Friday"
+msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: standalone/drakbug:56 standalone/drakbug:70 standalone/drakbug:204 standalone/drakbug:206 standalone/drakbug:210
#, c-format
-msgid "Disconnection from Internet complete."
+msgid "Standalone Tools"
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/drakbug:57
#, c-format
-msgid "Autodetection"
+msgid "HardDrake"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbug:58
#, c-format
-msgid "Real name"
+msgid "Mandrake Online"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1 ../../standalone/drakfont:1
+#: standalone/drakbug:59
#, c-format
-msgid "done"
+msgid "Menudrake"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbug:60
#, c-format
-msgid "Please uncheck or remove it on next time."
+msgid "Msec"
msgstr ""
-#: ../../security/level.pm:1
+#: standalone/drakbug:61
#, c-format
-msgid "Higher"
+msgid "Remote Control"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakbug:62
#, c-format
-msgid "Choose the partitions you want to format"
+msgid "Software Manager"
msgstr ""
-#: ../../standalone/drakxtv:1
+#: standalone/drakbug:63
#, c-format
-msgid ""
-"No TV Card has been detected on your machine. Please verify that a Linux-supported Video/TV Card is correctly plugged in.\n"
-"\n"
-"\n"
-"You can visit our hardware database at:\n"
-"\n"
-"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbug:64
#, c-format
-msgid "Can't find %s on %s"
+msgid "Windows Migration tool"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakbug:65
#, c-format
-msgid "Japanese 106 keys"
+msgid "Userdrake"
msgstr ""
-#: ../../scanner.pm:1 ../../standalone/scannerdrake:1
+#: standalone/drakbug:66
#, c-format
-msgid "Could not install the packages needed to share your scanner(s)."
+msgid "Configuration Wizards"
msgstr ""
-#: ../../standalone/drakTermServ:1 ../../standalone/drakTermServ:1
+#: standalone/drakbug:84
#, c-format
-msgid "This will take a few minutes."
+msgid ""
+"To submit a bug report, click the report button, which will open your default browser\n"
+"to Anthill where you will be able to upload the above information as a bug report."
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbug:102
#, c-format
-msgid "Burkina Faso"
+msgid "Application:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakbug:103 standalone/drakbug:115
#, c-format
-msgid "June"
+msgid "Package: "
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakbug:104
#, c-format
-msgid "Use scanners on remote computers"
+msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakbug:105 standalone/drakbug:116
#, c-format
-msgid "Delete selected rule"
+msgid "Release: "
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakbug:110
#, c-format
-msgid "Accessing printers on remote CUPS servers"
+msgid ""
+"Application Name\n"
+"or Full Path:"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbug:113
#, c-format
-msgid "Insert a floppy in %s"
+msgid "Find Package"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbug:117
#, c-format
-msgid "Maldives"
+msgid "Summary: "
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakbug:129
#, c-format
-msgid "compact"
+msgid "YOUR TEXT HERE"
msgstr ""
-#: ../../common.pm:1
+#: standalone/drakbug:132
#, c-format
-msgid "1 minute"
+msgid "Bug Description/System Information"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakbug:136
#, c-format
-msgid "type: fat"
+msgid "Submit kernel version"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakbug:137
#, c-format
-msgid ""
-"on channel %d id %d\n"
-""
+msgid "Submit cpuinfo"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakbug:138
#, c-format
-msgid ", multi-function device"
+msgid "Submit lspci"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakbug:159
#, c-format
-msgid "Laos"
+msgid "Report"
msgstr ""
-#: ../advertising/04-configuration.pl:1
+#: standalone/drakbug:219
#, c-format
-msgid "Mandrake Linux 9.2 provides you with the Mandrake Control Center, a powerful tool to fully adapt your computer to the use you make of it. Configure and customize elements such as the security level, the peripherals (screen, mouse, keyboard...), the Internet connection and much more!"
+msgid "Not installed"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakbug:231
#, c-format
-msgid "Activate/Disable ethernet cards promiscuity check."
+msgid "Package not installed"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakbug:248
#, c-format
-msgid "Congratulations, the \"%s\" network interface has been succesfully deleted"
+msgid "NOT FOUND"
msgstr ""
-#: ../../install_interactive.pm:1
+#: standalone/drakbug:259
#, c-format
-msgid "There is no FAT partition to resize (or not enough space left)"
+msgid "connecting to %s ..."
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakbug:267
#, c-format
-msgid "Up"
+msgid "No browser available! Please install one"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1
+#: standalone/drakbug:286
#, c-format
-msgid "Firewall"
+msgid "Please enter a package name."
msgstr ""
-#: ../../standalone/drakxtv:1
+#: standalone/drakbug:292
#, c-format
-msgid "Area:"
+msgid "Please enter summary text."
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/drakclock:29
#, c-format
-msgid "(E)IDE/ATA controllers"
+msgid "DrakClock"
msgstr ""
-#: ../../fs.pm:1
+#: standalone/drakclock:36
#, c-format
-msgid "All I/O to the file system should be done synchronously."
+msgid "Time Zone"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakclock:42
#, c-format
-msgid "Printer Server"
+msgid "Timezone - DrakClock"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakclock:44
#, c-format
-msgid "Custom configuration"
+msgid "GMT - DrakClock"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakclock:44
#, c-format
-msgid "To do so, you need to supply the firmware files for your scanners so that it can be installed."
+msgid "Is your hardware clock set to GMT?"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: standalone/drakclock:71
#, c-format
-msgid ""
-"Please indicate where the installation image will be available.\n"
-"\n"
-"If you do not have an existing directory, please copy the CD or DVD contents.\n"
-"\n"
-""
+msgid "Network Time Protocol"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakclock:73
#, c-format
-msgid "Saint Pierre and Miquelon"
+msgid ""
+"Your computer can synchronize its clock\n"
+" with a remote time server using NTP"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakclock:74
#, c-format
-msgid "September"
+msgid "Enable Network Time Protocol"
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakclock:81
#, c-format
-msgid "saving Bootsplash theme..."
+msgid "Server:"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakclock:100
#, c-format
-msgid "Portugal"
+msgid "Reset"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: standalone/drakclock:196
#, c-format
-msgid "Do you have another one?"
+msgid ""
+"We need to install ntp package\n"
+" to enable Network Time Protocol\n"
+"\n"
+"Do you want to install ntp ?"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakconnect:87
#, c-format
-msgid ", printing to %s"
+msgid "Network configuration (%d adapters)"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakconnect:98 standalone/drakconnect:506
#, c-format
-msgid "Assign host name from DHCP address"
+msgid "Gateway:"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakconnect:98 standalone/drakconnect:506
#, c-format
-msgid "Toggle to normal mode"
+msgid "Interface:"
msgstr ""
-#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#: standalone/drakconnect:102 standalone/net_monitor:110
#, c-format
-msgid "Generic"
+msgid "Wait please"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakconnect:122
#, c-format
-msgid ""
-"Cylinder %d to %d\n"
-""
+msgid "Interface"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakconnect:122
#, c-format
-msgid "YOUR TEXT HERE"
+msgid "Protocol"
msgstr ""
-#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
+#: standalone/drakconnect:122 standalone/drakups:250
#, c-format
-msgid "NONE"
+msgid "Driver"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakconnect:122
#, c-format
-msgid "Which disk do you want to move it to?"
+msgid "State"
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakconnect:139
#, c-format
-msgid "Display logo on Console"
+msgid "Hostname: "
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1
+#: standalone/drakconnect:141
#, c-format
-msgid "Windows Domain"
+msgid "Configure hostname..."
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakconnect:155 standalone/drakconnect:547
#, c-format
-msgid "Saami (norwegian)"
+msgid "LAN configuration"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: standalone/drakconnect:160
#, c-format
-msgid "Interface %s (on network %s)"
+msgid "Configure Local Area Network..."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakconnect:168 standalone/drakconnect:208
#, c-format
-msgid "INFO"
+msgid "Apply"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakconnect:273 standalone/drakconnect:732
#, c-format
-msgid "Wallis and Futuna"
+msgid "Gateway"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakconnect:280
#, c-format
-msgid "Need to create /etc/dhcpd.conf first!"
+msgid "DNS servers"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakconnect:286
#, c-format
-msgid "Is FPU present"
+msgid "Search Domain"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakconnect:292
#, c-format
-msgid ""
-"No additional information\n"
-"about this service, sorry."
+msgid "static"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakconnect:292
#, c-format
-msgid ""
-"There are no scanners found which are available on your system.\n"
-""
+msgid "dhcp"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakconnect:353 standalone/harddrake2:58
#, c-format
-msgid "Build Single NIC -->"
+msgid "Media class"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakconnect:354 standalone/drakfloppy:144
#, c-format
-msgid "Marshall Islands"
+msgid "Module name"
msgstr ""
-#: ../../ugtk2.pm:1
+#: standalone/drakconnect:355
#, c-format
-msgid "Is this correct?"
+msgid "Mac Address"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/drakconnect:356 standalone/harddrake2:21
#, c-format
-msgid "Root password"
+msgid "Bus"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakconnect:357 standalone/harddrake2:29
#, c-format
-msgid "Windows (FAT32)"
+msgid "Location on the bus"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakconnect:397
#, c-format
-msgid "Build All Kernels -->"
+msgid ""
+"An unexpected error has happened:\n"
+"%s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakconnect:407
#, c-format
-msgid "DVDRAM device"
+msgid "Remove a network interface"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakconnect:411
#, c-format
-msgid "if set to yes, report unowned files."
+msgid "Select the network interface to remove:"
msgstr ""
-#: ../../install_interactive.pm:1
+#: standalone/drakconnect:427
#, c-format
msgid ""
-"You don't have a swap partition.\n"
+"An error occured while deleting the \"%s\" network interface:\n"
"\n"
-"Continue anyway?"
+"%s"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakconnect:429
#, c-format
-msgid "Version: "
+msgid "Congratulations, the \"%s\" network interface has been succesfully deleted"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakconnect:445
#, c-format
-msgid "Server IP missing!"
+msgid "No Ip"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakconnect:446
#, c-format
-msgid "Suriname"
+msgid "No Mask"
msgstr ""
-#: ../../network/adsl.pm:1
+#: standalone/drakconnect:447 standalone/drakconnect:618
#, c-format
-msgid "Use a floppy"
+msgid "up"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakconnect:447 standalone/drakconnect:618
#, c-format
-msgid "Enable ACPI"
+msgid "down"
msgstr ""
-#: ../../fs.pm:1
+#: standalone/drakconnect:497 standalone/net_monitor:421
#, c-format
-msgid "Give write access to ordinary users"
+msgid "Connected"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakconnect:497 standalone/net_monitor:421
#, c-format
-msgid "Graphical Environment"
+msgid "Not connected"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakconnect:498
#, c-format
-msgid "Gibraltar"
+msgid "Disconnect..."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakconnect:498
#, c-format
-msgid "Do nothing"
+msgid "Connect..."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakconnect:527
#, c-format
-msgid "Delete Client"
+msgid "Warning, another Internet connection has been detected, maybe using your network"
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakconnect:543
#, c-format
-msgid "Filesystem type: "
+msgid "Deactivate now"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakconnect:543
#, c-format
-msgid "Starting network..."
+msgid "Activate now"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakconnect:551
#, c-format
-msgid "Vietnam"
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakconnect:565
#, c-format
-msgid "/_Fields description"
+msgid "LAN Configuration"
msgstr ""
-#: ../advertising/10-security.pl:1
+#: standalone/drakconnect:577
#, c-format
-msgid "Optimize your security by using Mandrake Linux"
+msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakconnect:586
#, c-format
-msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown@fensystems.co.uk>\n"
-"\n"
-""
+msgid "Boot Protocol"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1 ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../interactive/gtk.pm:1 ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbug:1 ../../standalone/drakconnect:1 ../../standalone/drakfont:1 ../../standalone/drakperm:1 ../../standalone/draksec:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1
+#: standalone/drakconnect:587
#, c-format
-msgid "Help"
+msgid "Started on boot"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakconnect:588
#, c-format
-msgid "Check if the network devices are in promiscuous mode"
+msgid "DHCP client"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakconnect:623
#, c-format
msgid ""
-"Iwspy is used to set a list of addresses in a wireless network\n"
-"interface and to read back quality of link information for each of those.\n"
-"\n"
-"This information is the same as the one available in /proc/net/wireless :\n"
-"quality of the link, signal strength and noise level.\n"
-"\n"
-"See iwpspy(8) man page for further information."
-msgstr ""
-
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
-#, c-format
-msgid "Your personal phone number"
-msgstr ""
-
-#: ../../install_interactive.pm:1
-#, c-format
-msgid "Which size do you want to keep for Windows on"
+"This interface has not been configured yet.\n"
+"Run the \"Add an interface\" assistant from the Mandrake Control Center"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakconnect:678
#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-""
+"You don't have any configured Internet connection.\n"
+"Please run \"Internet access\" in control center."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakconnect:686
#, c-format
-msgid "Username required"
+msgid "Internet connection configuration"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/drakconnect:741
#, c-format
-msgid "Device"
+msgid "Ethernet Card"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakconnect:742
#, c-format
-msgid ""
-"Depending on the default language you chose in Section , DrakX will\n"
-"automatically select a particular type of keyboard configuration. However,\n"
-"you may not have a keyboard that corresponds exactly to your language: for\n"
-"example, if you are an English speaking Swiss person, you may have a Swiss\n"
-"keyboard. Or if you speak English but are located in Quebec, you may find\n"
-"yourself in the same situation where your native language and keyboard do\n"
-"not match. In either case, this installation step will allow you to select\n"
-"an appropriate keyboard from a list.\n"
-"\n"
-"Click on the \"%s\" button to be presented with the complete list of\n"
-"supported keyboards.\n"
-"\n"
-"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
-"dialog will allow you to choose the key binding that will switch the\n"
-"keyboard between the Latin and non-Latin layouts."
+msgid "DHCP Client"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakconnect:771
#, c-format
-msgid "SMB (Windows 9x/NT) Printer Options"
+msgid "Internet Connection Configuration"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakconnect:772
#, c-format
-msgid "URI: %s"
+msgid "Internet access"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakconnect:774 standalone/net_monitor:92
#, c-format
-msgid "Valid user list changed, rewriting config file."
+msgid "Connection type: "
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/drakconnect:777
#, c-format
-msgid "The wizard successfully configured the new \"%s\" UPS device."
+msgid "Status:"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/drakedm:53
#, c-format
-msgid "mkinitrd optional arguments"
+msgid "Choosing a display manager"
msgstr ""
-#: ../advertising/03-software.pl:1
+#: standalone/drakedm:54
#, c-format
-msgid "Surf the Web with Mozilla or Konqueror, read your mail with Evolution or Kmail, create your documents with OpenOffice.org."
+msgid ""
+"X11 Display Manager allows you to graphically log\n"
+"into your system with the X Window System running and supports running\n"
+"several different X sessions on your local machine at the same time."
msgstr ""
-#: ../../network/isdn.pm:1
+#: standalone/drakedm:77
#, c-format
-msgid "Protocol for the rest of the world"
+msgid "The change is done, do you want to restart the dm service ?"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakfloppy:40
#, c-format
-msgid "Print test pages"
+msgid "drakfloppy"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakfloppy:82
#, c-format
-msgid "Activate now"
+msgid "Boot disk creation"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: standalone/drakfloppy:83
#, c-format
-msgid "64 MB or more"
+msgid "General"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfloppy:86
#, c-format
-msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on laser printers with too low memory it can even not come out. In most cases it is enough to print the standard test page."
+msgid "Device"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakfloppy:92
#, c-format
-msgid "Please select the device where your %s is attached"
+msgid "Kernel version"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakfloppy:106
#, c-format
-msgid ""
-"Not formatted\n"
-""
+msgid "Preferences"
msgstr ""
-#: ../../standalone/draksec:1
+#: standalone/drakfloppy:109
#, c-format
-msgid "Periodic Checks"
+msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: standalone/drakfloppy:125
#, c-format
-msgid "PXE Server Configuration"
+msgid "Advanced preferences"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakfloppy:144
#, c-format
-msgid "Backup the system files before:"
+msgid "Size"
msgstr ""
-#: ../../security/level.pm:1
+#: standalone/drakfloppy:147
#, c-format
-msgid "This is the standard security recommended for a computer that will be used to connect to the Internet as a client."
+msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakfloppy:149
#, c-format
-msgid "First floppy drive"
+msgid "force"
msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1 ../../standalone/logdrake:1
+#: standalone/drakfloppy:150
#, c-format
-msgid "/File/_Quit"
+msgid "omit raid modules"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakfloppy:151
#, c-format
-msgid "Dvorak"
+msgid "if needed"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakfloppy:152
#, c-format
-msgid "Choose the new size"
+msgid "omit scsi modules"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakfloppy:155
#, c-format
-msgid "Media class"
+msgid "Add a module"
msgstr ""
-#: ../../standalone/XFdrake:1
+#: standalone/drakfloppy:164
#, c-format
-msgid "You need to log out and back in again for changes to take effect"
+msgid "Remove a module"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakfloppy:296
#, c-format
-msgid "The %s is not known by this version of Scannerdrake."
+msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfloppy:302
#, c-format
-msgid "Faroe Islands"
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakfloppy:306
#, c-format
-msgid "Restart XFS"
+msgid "Unable to fork: %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfloppy:309
#, c-format
-msgid "Add host/network"
+msgid "Floppy creation completed"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakfloppy:309
#, c-format
-msgid "Scannerdrake will not be started now."
+msgid ""
+"The creation of the boot floppy has been successfully completed \n"
+""
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakfloppy:312
#, c-format
-msgid "Model name"
+msgid ""
+"Unable to properly close mkbootdisk:\n"
+"\n"
+"<span foreground=\"Red\"><tt>%s</tt></span>"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfont:203
#, c-format
-msgid "Albania"
+msgid "Search installed fonts"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfont:205
#, c-format
-msgid "British Indian Ocean Territory"
+msgid "Unselect fonts installed"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfont:228
#, c-format
-msgid "Normal Mode"
+msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakfont:230
#, c-format
-msgid "No CD-R/DVD-R in drive!"
+msgid "no fonts found"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakfont:238 standalone/drakfont:281 standalone/drakfont:340 standalone/drakfont:383 standalone/drakfont:391 standalone/drakfont:417 standalone/drakfont:434 standalone/drakfont:448
#, c-format
-msgid "Printer connection type"
+msgid "done"
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: standalone/drakfont:244
#, c-format
-msgid "No network adapter on your system!"
+msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakfont:279
#, c-format
-msgid "Network %s"
+msgid "Reselect correct fonts"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakfont:282
#, c-format
-msgid "Malayalam"
+msgid ""
+"could not find any font.\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfont:292
#, c-format
-msgid "Option %s out of range!"
+msgid "Search for fonts in installed list"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: standalone/drakfont:316
#, c-format
-msgid "Connect %s"
+msgid "%s fonts conversion"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfont:338
#, c-format
-msgid "Restarting CUPS..."
+msgid "Fonts copy"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfont:341
#, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgid "True Type fonts installation"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: standalone/drakfont:348
#, c-format
-msgid "Continue without USB key"
+msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../install_steps.pm:1
+#: standalone/drakfont:352
#, c-format
-msgid "Duplicate mount point %s"
+msgid "True Type install done"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakfont:359 standalone/drakfont:379
#, c-format
-msgid "if set to yes, run chkrootkit checks."
+msgid "type1inst building"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakfont:370
#, c-format
-msgid "Connection Configuration"
+msgid "Ghostscript referencing"
msgstr ""
-#: ../../harddrake/v4l.pm:1 ../../harddrake/v4l.pm:1
+#: standalone/drakfont:384
#, c-format
-msgid "Unknown|Generic"
+msgid "Suppress Temporary Files"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakfont:387
#, c-format
-msgid ""
-"At the time you are installing Mandrake Linux, it is likely that some\n"
-"packages have been updated since the initial release. Bugs may have been\n"
-"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Check \"%s\"\n"
-"if you have a working Internet connection, or \"%s\" if you prefer to\n"
-"install updated packages later.\n"
-"\n"
-"Choosing \"%s\" will display a list of places from which updates can be\n"
-"retrieved. You should choose one nearer to you. A package-selection tree\n"
-"will appear: review the selection, and press \"%s\" to retrieve and install\n"
-"the selected package(s), or \"%s\" to abort."
+msgid "Restart XFS"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfont:432 standalone/drakfont:442
#, c-format
-msgid "Myanmar"
+msgid "Suppress Fonts Files"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/draksplash:1 ../../standalone/harddrake2:1 ../../standalone/logdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakfont:444
#, c-format
-msgid "Quit"
+msgid "xfs restart"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakfont:452 standalone/drakfont:672
#, c-format
-msgid "Auto allocate"
+msgid ""
+"Before installing any fonts, be sure that you have the right to use and install them on your system.\n"
+"\n"
+"-You can install the fonts the normal way. In rare cases, bogus fonts may hang up your X Server."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakfont:520
#, c-format
-msgid "Check bad blocks?"
+msgid "Import Fonts"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/drakfont:533
#, c-format
-msgid "Other MultiMedia devices"
+msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakfont:540
#, c-format
-msgid "burner"
+msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakfont:548
#, c-format
-msgid "Bug Description/System Information"
+msgid "Advanced Options"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakfont:555
#, c-format
-msgid " (Default is all users)"
+msgid "Font List"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakfont:564
#, c-format
-msgid "No remote machines"
+msgid "About"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfont:602
#, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
+" Copyright (C) 2001-2002 by MandrakeSoft \n"
+" DUPONT Sebastien (original version)\n"
+" CHAUMETTE Damien <dchaumette@mandrakesoft.com>\n"
"\n"
-"This wizard will help you to install your printer(s) connected to this computer.\n"
+" This program is free software; you can redistribute it and/or modify\n"
+" it under the terms of the GNU General Public License as published by\n"
+" the Free Software Foundation; either version 2, or (at your option)\n"
+" any later version.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on this computer and turn it/them on so that it/they can be auto-detected.\n"
+" This program is distributed in the hope that it will be useful,\n"
+" but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+" GNU General Public License for more details.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want to set up your printer(s) now."
+" You should have received a copy of the GNU General Public License\n"
+" along with this program; if not, write to the Free Software\n"
+" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"\n"
+" Thanks:\n"
+" - pfm2afm: \n"
+"\t by Ken Borgendale:\n"
+"\t Convert a Windows .pfm file to a .afm (Adobe Font Metrics)\n"
+" - type1inst:\n"
+"\t by James Macnicol: \n"
+"\t type1inst generates files fonts.dir fonts.scale & Fontmap.\n"
+" - ttf2pt1: \n"
+"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
+" Convert ttf font files to afm and pfb fonts\n"
+""
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakfont:645
#, c-format
-msgid "Authentication NIS"
+msgid "Choose the applications that will support the fonts:"
msgstr ""
-#: ../../standalone/drakclock:1
+#: standalone/drakfont:650
#, c-format
-msgid ""
-"We need to install ntp package\n"
-" to enable Network Time Protocol\n"
-"\n"
-"Do you want to install ntp ?"
+msgid "Ghostscript"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakfont:655
#, c-format
-msgid "Option ``Restrict command line options'' is of no use without a password"
+msgid "StarOffice"
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/drakfont:660
#, c-format
-msgid "Please select your UPS model."
+msgid "Abiword"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/drakfont:665
#, c-format
-msgid "Internet Connection Sharing currently enabled"
+msgid "Generic Printers"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfont:706
#, c-format
-msgid "United Arab Emirates"
+msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: standalone/drakfont:719
#, c-format
-msgid "Card IO_0"
+msgid "You've not selected any font"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakfont:753
#, c-format
-msgid "Disable Local Config"
+msgid "Install List"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfont:792
#, c-format
-msgid "Thailand"
+msgid "click here if you are sure."
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: standalone/drakfont:797
#, c-format
-msgid "Card IO_1"
+msgid "here if no."
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakfont:840
#, c-format
-msgid "Search:"
+msgid "Unselected All"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfont:843
#, c-format
-msgid "Kazakhstan"
+msgid "Selected All"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakfont:846
#, c-format
-msgid "Routers:"
+msgid "Remove List"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakfont:864 standalone/drakfont:886
#, c-format
-msgid "Write"
+msgid "Initial tests"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakfont:865
#, c-format
-msgid "Display all available remote CUPS printers"
+msgid "Copy fonts on your system"
msgstr ""
-#: ../../install_steps_newt.pm:1
+#: standalone/drakfont:866
#, c-format
-msgid "Mandrake Linux Installation %s"
+msgid "Install & convert Fonts"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: standalone/drakfont:867
#, c-format
-msgid "Unknown driver"
+msgid "Post Install"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakfont:887
#, c-format
-msgid "Thai keyboard"
+msgid "Remove fonts on your system"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakfont:888
#, c-format
-msgid "Bouvet Island"
+msgid "Post Uninstall"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakgw:57 standalone/drakgw:184
#, c-format
-msgid "Dialup options"
+msgid "Internet Connection Sharing"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakgw:114
#, c-format
-msgid "If no port is given, 631 will be taken as default."
+msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakgw:125
#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \tThrough clusternfs, each diskless client can have its own unique configuration files\n"
-" \ton the root filesystem of the server. By allowing local client hardware configuration, \n"
-" \tclients can customize files such as /etc/modules.conf, /etc/sysconfig/mouse, \n"
-" \t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root login to the terminal \n"
-" server on each client machine that has this feature enabled. Local configuration can be\n"
-" turned back off, retaining the configuration files, once the client machine is configured."
+msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: standalone/drakgw:126
#, c-format
msgid ""
-"Change your Cd-Rom!\n"
+"The setup of Internet Connection Sharing has already been done.\n"
+"It's currently enabled.\n"
"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
+"What would you like to do?"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakgw:130
#, c-format
-msgid "Polish"
+msgid "disable"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakgw:130 standalone/drakgw:154
#, c-format
-msgid "Mandrake Online"
+msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/drakgw:130 standalone/drakgw:154
#, c-format
-msgid "UPS users"
+msgid "dismiss"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakgw:133
#, c-format
-msgid ""
-"\t-Network by webdav.\n"
-""
+msgid "Disabling servers..."
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakgw:142
#, c-format
-msgid ", multi-function device on a parallel port"
+msgid "Internet Connection Sharing is now disabled."
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
+#: standalone/drakgw:149
#, c-format
-msgid "No ethernet network adapter has been detected on your system. Please run the hardware configuration tool."
+msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1 ../../standalone/drakgw:1
+#: standalone/drakgw:150
#, c-format
-msgid "Netmask"
+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 ""
-#: ../../diskdrake/hd_gtk.pm:1
+#: standalone/drakgw:154
#, c-format
-msgid "No hard drives found"
+msgid "enable"
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/drakgw:162
#, c-format
-msgid "2 buttons"
+msgid "Enabling servers..."
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/drakgw:168
#, c-format
-msgid "Logitech CC Series"
+msgid "Internet Connection Sharing is now enabled."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakgw:185
#, c-format
-msgid "What kind is your ISDN connection?"
+msgid ""
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use this computer's Internet connection.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network (LAN)."
msgstr ""
-#: ../../any.pm:1 ../../any.pm:1 ../../any.pm:1
+#: standalone/drakgw:205
#, c-format
-msgid "Label"
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+""
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakgw:224
#, c-format
-msgid "Save on floppy"
+msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakgw:225
#, c-format
-msgid "Check open ports"
+msgid "Interface %s"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakgw:234 standalone/drakpxe:137
#, c-format
-msgid "Edit selected printer"
+msgid "No network adapter on your system!"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakgw:235 standalone/drakpxe:138
#, c-format
-msgid "Printer auto-detection"
+msgid "No ethernet network adapter has been detected on your system. Please run the hardware configuration tool."
msgstr ""
-#: ../../network/isdn.pm:1
+#: standalone/drakgw:241
#, c-format
-msgid "Which of the following is your ISDN card?"
+msgid "Network interface"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakgw:242
#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
+"There is only one configured network adapter on your system:\n"
+"\n"
+"%s\n"
+"\n"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakgw:249
#, c-format
-msgid "Msec"
+msgid "Please choose what network adapter will be connected to your Local Area Network."
+msgstr ""
+
+#: standalone/drakgw:275
+#, c-format
+msgid "Network interface already configured"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: standalone/drakgw:276
#, c-format
msgid ""
-"=> Notice, a label changed:\n"
-"%s"
+"Warning, the network adapter (%s) is already configured.\n"
+"\n"
+"Do you want an automatic re-configuration?\n"
+"\n"
+"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: standalone/drakgw:281
#, c-format
-msgid "Number of capture buffers:"
+msgid "Automatic reconfiguration"
msgstr ""
-#: ../../interactive/stdio.pm:1
+#: standalone/drakgw:281
#, c-format
-msgid "Your choice? (0/1, default `%s') "
+msgid "No (experts only)"
+msgstr ""
+
+#: standalone/drakgw:282
+#, c-format
+msgid "Show current interface configuration"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakgw:283
+#, c-format
+msgid "Current interface configuration"
+msgstr ""
+
+#: standalone/drakgw:284
#, c-format
msgid ""
-"Any partitions that have been newly defined must be formatted for use\n"
-"(formatting means creating a file system).\n"
-"\n"
-"At this time, you may wish to reformat some already existing partitions to\n"
-"erase any data they contain. If you wish to do that, please select those\n"
-"partitions as well.\n"
-"\n"
-"Please note that it is not necessary to reformat all pre-existing\n"
-"partitions. You must reformat the partitions containing the operating\n"
-"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
-"reformat partitions containing data that you wish to keep (typically\n"
-"\"/home\").\n"
-"\n"
-"Please be careful when selecting partitions. After formatting, all data on\n"
-"the selected partitions will be deleted and you will not be able to recover\n"
-"it.\n"
-"\n"
-"Click on \"%s\" when you are ready to format partitions.\n"
-"\n"
-"Click on \"%s\" if you want to choose another partition for your new\n"
-"Mandrake Linux operating system installation.\n"
+"Current configuration of `%s':\n"
"\n"
-"Click on \"%s\" if you wish to select partitions that will be checked for\n"
-"bad blocks on the disk."
+"Network: %s\n"
+"IP address: %s\n"
+"IP attribution: %s\n"
+"Driver: %s"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: standalone/drakgw:297
#, c-format
-msgid "French"
+msgid ""
+"I can keep your current configuration and assume you already set up a DHCP server; in that case please verify I correctly read the Network that you use for your local network; I will not reconfigure it and I will not touch your DHCP server configuration.\n"
+"\n"
+"The default DNS entry is the Caching Nameserver configured on the firewall. You can replace that with your ISP DNS IP, for example.\n"
+"\t\t \n"
+"Otherwise, I can reconfigure your interface and (re)configure a DHCP server for you.\n"
+"\n"
+""
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakgw:304
#, c-format
-msgid "Czech (QWERTY)"
+msgid "Local Network adress"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakgw:308
#, c-format
-msgid "Allow X Window connections"
+msgid ""
+"DHCP Server Configuration.\n"
+"\n"
+"Here you can select different options for the DHCP server configuration.\n"
+"If you don't know the meaning of an option, simply leave it as it is.\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/service_harddrake:1
+#: standalone/drakgw:314
#, c-format
-msgid "Hardware probing in progress"
+msgid "(This) DHCP Server IP"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/shorewall.pm:1 ../../standalone/drakconnect:1 ../../standalone/drakgw:1
+#: standalone/drakgw:315
#, c-format
-msgid "Net Device"
+msgid "The DNS Server IP"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#: standalone/drakgw:316
#, c-format
-msgid "Summary"
+msgid "The internal domain name"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakgw:317
#, c-format
-msgid " (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+msgid "The DHCP start range"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#: standalone/drakgw:318
#, c-format
-msgid "Next"
+msgid "The DHCP end range"
msgstr ""
-#: ../../bootloader.pm:1
+#: standalone/drakgw:319
#, c-format
-msgid ""
-"You can't install the bootloader on a %s partition\n"
-""
+msgid "The default lease (in seconds)"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: standalone/drakgw:320
#, c-format
-msgid "CHAP"
+msgid "The maximum lease (in seconds)"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakgw:321
#, c-format
-msgid "Puerto Rico"
+msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakgw:328
#, c-format
-msgid "(bootp/dhcp/zeroconf)"
+msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: standalone/drakgw:338
#, c-format
msgid ""
-"\n"
-"Welcome.\n"
-"\n"
-"The parameters of the auto-install are available in the sections on the left"
+"Potential LAN address conflict found in current config of %s!\n"
+""
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakgw:348
#, c-format
-msgid ""
-"package 'ImageMagick' is required to be able to complete configuration.\n"
-"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgid "Configuring..."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakgw:349
#, c-format
-msgid "Select firmware file"
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: standalone/drakgw:385 standalone/drakpxe:231
#, c-format
-msgid "Telnet server"
+msgid "Problems installing package %s"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakgw:520
#, c-format
-msgid "Lithuanian \"number row\" QWERTY"
+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 ""
-#: ../../install_any.pm:1
+#: standalone/drakhelp:17
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
+" drakhelp 0.1\n"
+"Copyright (C) 2003 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU GPL.\n"
"\n"
-"Do you really want to remove these packages?\n"
+"Usage: \n"
""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakhelp:22
#, c-format
-msgid "Anguilla"
+msgid ""
+" --help - display this help \n"
+""
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakhelp:23
#, c-format
-msgid "NIS Domain"
+msgid ""
+" --id <id_label> - load the html help page which refers to id_label\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakhelp:24
#, c-format
-msgid "Antarctica"
+msgid ""
+" --doc <link> - link to another web page ( for WM welcome frontend)\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakhelp:35
#, c-format
msgid ""
-"\n"
-"- User Files:\n"
+"%s cannot be displayed \n"
+". No Help entry of this type\n"
""
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakhelp:41
#, c-format
-msgid "Mount options"
+msgid "No browser is installed on your system, Please install one if you want to browse the help system"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakperm:21
#, c-format
-msgid "Jamaica"
+msgid "System settings"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakperm:22
#, c-format
-msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle or DVD players"
+msgid "Custom settings"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakperm:23
#, c-format
-msgid "Please wait, preparing installation..."
+msgid "Custom & system settings"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: standalone/drakperm:43
#, c-format
-msgid "Czech (QWERTZ)"
+msgid "Editable"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakperm:48 standalone/drakperm:341
#, c-format
-msgid "Track network card id (useful for laptops)"
+msgid "Path"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakperm:48 standalone/drakperm:252 standalone/logdrake:109
#, c-format
-msgid "The port number should be an integer!"
+msgid "User"
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/drakperm:48 standalone/drakperm:252
#, c-format
-msgid "You must choose an image file first!"
+msgid "Group"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakperm:48 standalone/drakperm:353
#, c-format
-msgid "Restore from Hard Disk."
+msgid "Permissions"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakperm:107
#, c-format
-msgid "Add to LVM"
+msgid ""
+"Drakperm is used to see files to use in order to fix permissions, owners, and groups via msec.\n"
+"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakperm:110
#, c-format
-msgid "DNS server"
+msgid ""
+"The current security level is %s.\n"
+"Select permissions to see/edit"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakperm:121
#, c-format
-msgid "Trinidad and Tobago"
+msgid "Up"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakperm:121
#, c-format
-msgid ""
-"LPD and LPRng do not support IPP printers.\n"
-""
+msgid "Move selected rule up one level"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakperm:122
#, c-format
-msgid "Host name or IP."
+msgid "Down"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakperm:122
#, c-format
-msgid "/_Edit"
+msgid "Move selected rule down one level"
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/drakperm:123
#, c-format
-msgid "simple"
+msgid "Add a rule"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/drakperm:123
#, c-format
-msgid "Clear all"
+msgid "Add a new rule at the end"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakperm:124
#, c-format
-msgid "No test pages"
+msgid "Delete selected rule"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakperm:125 standalone/drakups:298 standalone/drakups:341 standalone/drakups:361 standalone/printerdrake:226
#, c-format
-msgid "Falkland Islands (Malvinas)"
+msgid "Edit"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakperm:125
#, c-format
-msgid "Adapter %s: %s"
+msgid "Edit current rule"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/drakperm:244
#, c-format
-msgid "Boot disk creation"
+msgid "browse"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakperm:254
#, c-format
-msgid "Monday"
+msgid "Read"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/main.pm:1 ../../printer/main.pm:1 ../../printer/main.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakperm:255
#, c-format
-msgid "Unknown model"
+msgid "Enable \"%s\" to read the file"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakperm:258
#, c-format
-msgid "if set to yes, check files/directories writable by everybody."
+msgid "Write"
msgstr ""
-#: ../../help.pm:1
+#: standalone/drakperm:259
#, c-format
-msgid "authentication"
+msgid "Enable \"%s\" to write the file"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakperm:262
#, c-format
-msgid "Backup Now"
+msgid "Execute"
msgstr ""
-#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1 ../../standalone/drakups:1 ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/harddrake2:1 ../../standalone/logdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: standalone/drakperm:263
#, c-format
-msgid "/_File"
+msgid "Enable \"%s\" to execute the file"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakperm:265
#, c-format
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgid "Sticky-bit"
msgstr ""
-#: ../../services.pm:1
+#: standalone/drakperm:265
#, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Used for directory:\n"
+" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakperm:266
#, c-format
-msgid "Editable"
+msgid "Set-UID"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakperm:266
#, c-format
-msgid "Which dhcp client do you want to use ? (default is dhcp-client)"
+msgid "Use owner id for execution"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakperm:267
#, c-format
-msgid "Tamil (ISCII-layout)"
+msgid "Set-GID"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakperm:267
#, c-format
-msgid "Mayotte"
+msgid "Use group id for execution"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakperm:285
#, c-format
-msgid "Set shell commands history size. A value of -1 means unlimited."
+msgid "User :"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakperm:287
#, c-format
-msgid ""
-"%d KB\n"
-""
+msgid "Group :"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakperm:291
#, c-format
-msgid "Creating auto install floppy..."
+msgid "Current user"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/drakperm:292
#, c-format
-msgid "Searching for scanners ..."
+msgid "When checked, owner and group won't be changed"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakperm:304
#, c-format
-msgid "Russia"
+msgid "Path selection"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/drakperm:347
#, c-format
-msgid "Partitioning"
+msgid "Property"
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/drakpxe:55
#, c-format
-msgid "Syslog"
+msgid "PXE Server Configuration"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakpxe:111
#, c-format
-msgid "Can't create catalog!"
+msgid "Installation Server Configuration"
msgstr ""
-#: ../advertising/11-mnf.pl:1
+#: standalone/drakpxe:112
#, c-format
-msgid "Complete your security setup with this very easy-to-use software which combines high performance components such as a firewall, a virtual private network (VPN) server and client, an intrusion detection system and a traffic manager."
+msgid ""
+"You are about to configure your computer to install a PXE server as a DHCP server\n"
+"and a TFTP server to build an installation server.\n"
+"With that feature, other computers on your local network will be installable using this computer as source.\n"
+"\n"
+"Make sure you have configured your Network/Internet access using drakconnect before going any further.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network (LAN)."
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/drakpxe:143
#, c-format
-msgid "Not enough free space for auto-allocating"
+msgid "Please choose which network interface will be used for the dhcp server."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakpxe:144
#, c-format
-msgid "Set root password"
+msgid "Interface %s (on network %s)"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/drakpxe:169
#, c-format
-msgid "Enable IP spoofing protection"
+msgid ""
+"The DHCP server will allow other computer to boot using PXE in the given range of address.\n"
+"\n"
+"The network address is %s using a netmask of %s.\n"
+"\n"
+""
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: standalone/drakpxe:173
#, c-format
-msgid "There's no free driver for your sound card (%s), but there's a proprietary driver at \"%s\"."
+msgid "The DHCP start ip"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/drakpxe:174
#, c-format
-msgid "Group :"
+msgid "The DHCP end ip"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/drakpxe:187
#, c-format
-msgid "After resizing partition %s, all data on this partition will be lost"
+msgid ""
+"Please indicate where the installation image will be available.\n"
+"\n"
+"If you do not have an existing directory, please copy the CD or DVD contents.\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakpxe:192
#, c-format
-msgid "Internet connection configuration"
+msgid "Installation image directory"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakpxe:196
#, c-format
-msgid "Add the name as an exception to the handling of password aging by msec."
+msgid "No image found"
msgstr ""
-#: ../../network/isdn.pm:1
+#: standalone/drakpxe:197
#, c-format
-msgid "USB"
+msgid "No CD or DVD image found, please copy the installation program and rpm files."
msgstr ""
-#: ../../standalone/drakxtv:1
+#: standalone/drakpxe:210
#, c-format
-msgid "Scanning for TV channels"
+msgid ""
+"Please indicate where the auto_install.cfg file is located.\n"
+"\n"
+"Leave it blank if you do not want to set up automatic installation mode.\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakpxe:215
#, c-format
-msgid "Kernel:"
+msgid "Location of auto_install.cfg file"
msgstr ""
-#: ../../standalone/drakups:1 ../../standalone/harddrake2:1 ../../standalone/printerdrake:1
+#: standalone/draksec:43
#, c-format
-msgid "/_About..."
+msgid "ALL"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/draksec:43
#, c-format
-msgid "Bengali"
+msgid "LOCAL"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/draksec:43 standalone/draksec:43
#, c-format
-msgid "Preference: "
+msgid "default"
msgstr ""
-#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: standalone/draksec:43
#, c-format
-msgid "Services: %d activated for %d registered"
+msgid "ignore"
msgstr ""
-#: ../../any.pm:1
+#: standalone/draksec:43
#, c-format
-msgid "Create a bootdisk"
+msgid "no"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/draksec:43
#, c-format
-msgid "Solomon Islands"
+msgid "yes"
msgstr ""
-#: ../../standalone/mousedrake:1
+#: standalone/draksec:69
#, c-format
-msgid "Please test your mouse:"
+msgid ""
+"Here, you can setup the security level and administrator of your machine.\n"
+"\n"
+"\n"
+"The Security Administrator is the one who will receive security alerts if the\n"
+"'Security Alerts' option is set. It can be a username or an email.\n"
+"\n"
+"\n"
+"The Security Level menu allows you to select one of the six preconfigured security levels\n"
+"provided with msec. These levels range from poor security and ease of use, to\n"
+"paranoid config, suitable for very sensitive server applications:\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Poor</span>: This is a totally unsafe but very\n"
+"easy to use security level. It should only be used for machines not connected to\n"
+"any network and that are not accessible to everybody.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Standard</span>: This is the standard security\n"
+"recommended for a computer that will be used to connect to the Internet as a\n"
+"client.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">High</span>: There are already some\n"
+"restrictions, and more automatic checks are run every night.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Higher</span>: The security is now high enough\n"
+"to use the system as a server which can accept connections from many clients. If\n"
+"your machine is only a client on the Internet, you should choose a lower level.\n"
+"\n"
+"\n"
+"<span foreground=\"royalblue3\">Paranoid</span>: This is similar to the previous\n"
+"level, but the system is entirely closed and security features are at their\n"
+"maximum"
msgstr ""
-#: ../../modules/interactive.pm:1
+#: standalone/draksec:117
#, c-format
-msgid "(module %s)"
+msgid "(default value: %s)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/draksec:158
#, c-format
-msgid "Workgroup"
+msgid "Security Level:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/draksec:161
#, c-format
-msgid "Printer host name or IP"
+msgid "Security Alerts:"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: standalone/draksec:165
#, c-format
-msgid "down"
+msgid "Security Administrator:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/draksec:167
#, c-format
-msgid "Host Path or Module"
+msgid "Basic options"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/draksec:180
#, c-format
-msgid "Name of printer should contain only letters, numbers and the underscore"
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need an explanation, look at the help tooltip.\n"
+""
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/draksec:182
#, c-format
-msgid "Show current interface configuration"
+msgid "Network Options"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/draksec:182
#, c-format
-msgid "Add Printer"
+msgid "System Options"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/draksec:226
#, c-format
-msgid ""
-"The argument specifies if clients are authorized to connect\n"
-"to the X server from the network on the tcp port 6000 or not."
+msgid "Periodic Checks"
msgstr ""
-#: ../../help.pm:1
+#: standalone/draksec:240
#, c-format
-msgid "Development"
+msgid "Please wait, setting security level..."
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/draksec:246
#, c-format
-msgid "Done"
+msgid "Please wait, setting security options..."
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: standalone/draksound:47
#, c-format
-msgid "Web Server"
+msgid "No Sound Card detected!"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/draksound:48
#, c-format
-msgid "Chile"
+msgid ""
+"No Sound Card has been detected on your machine. Please verify that a Linux-supported Sound Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/draksound:55
#, c-format
msgid ""
-"\tDo not include System Files\n"
-""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/draksplash:21
#, c-format
-msgid "The inkjet printer drivers provided by Lexmark only support local printers, no printers on remote machines or print server boxes. Please connect your printer to a local port or configure it on the machine where it is connected to."
+msgid ""
+"package 'ImageMagick' is required to be able to complete configuration.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/draksplash:67
#, c-format
-msgid ""
-"Your multi-function device was configured automatically to be able to scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the scanner when you have more than one) from the command line or with the graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, you can also scan by choosing the appropriate point in the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" on the command line to get more information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+msgid "first step creation"
msgstr ""
-#: ../../any.pm:1
+#: standalone/draksplash:70
#, c-format
-msgid "(already added %s)"
+msgid "final resolution"
msgstr ""
-#: ../../any.pm:1
+#: standalone/draksplash:71 standalone/draksplash:165
#, c-format
-msgid "Bootloader installation in progress"
+msgid "choose image file"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/draksplash:72
#, c-format
-msgid ", using command %s"
+msgid "Theme name"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/draksplash:77
#, c-format
-msgid "Alt and Shift keys simultaneously"
+msgid "Browse"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/draksplash:87 standalone/draksplash:153
#, c-format
-msgid "Flags"
+msgid "Configure bootsplash picture"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/draksplash:90
#, c-format
-msgid "Add/Del Users"
+msgid ""
+"x coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/draksplash:91
#, c-format
-msgid "Iwconfig command extra arguments"
+msgid ""
+"y coordinate of text box\n"
+"in number of characters"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/draksplash:92
#, c-format
-msgid "Host/network IP address missing."
+msgid "text width"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1
+#: standalone/draksplash:93
#, c-format
-msgid "(detected)"
+msgid "text box height"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: standalone/draksplash:94
#, c-format
-msgid "weekly"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
+#: standalone/draksplash:95
#, c-format
-msgid "Settings"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/draksplash:96
#, c-format
-msgid ""
-"The entered host/network IP is not correct.\n"
-""
+msgid "the width of the progress bar"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/draksplash:97
#, c-format
-msgid "Create/Transfer backup keys for SSH"
+msgid "the height of the progress bar"
msgstr ""
-#: ../../any.pm:1
+#: standalone/draksplash:98
#, c-format
-msgid "Here is the full list of available countries"
+msgid "the color of the progress bar"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/draksplash:113
#, c-format
-msgid "Alternative test page (A4)"
+msgid "Preview"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/draksplash:115
#, c-format
-msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+msgid "Save theme"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: standalone/draksplash:116
#, c-format
-msgid "Wait please"
+msgid "Choose color"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: standalone/draksplash:119
#, c-format
-msgid "PAP"
+msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/draksplash:120
#, c-format
-msgid "Backup user files"
+msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/draksplash:156 standalone/draksplash:320
#, c-format
-msgid "CD-ROM"
+msgid "This theme does not yet have a bootsplash in %s !"
msgstr ""
-#: ../../diskdrake/dav.pm:1
+#: standalone/draksplash:162
#, c-format
-msgid "New"
+msgid "choose image"
msgstr ""
-#: ../../help.pm:1
+#: standalone/draksplash:204
#, c-format
-msgid ""
-"This is the most crucial decision point for the security of your GNU/Linux\n"
-"system: you have to enter the \"root\" password. \"Root\" is the system\n"
-"administrator and is the only user authorized to make updates, add users,\n"
-"change the overall system configuration, and so on. In short, \"root\" can\n"
-"do everything! That is why you must choose a password that is difficult to\n"
-"guess - DrakX will tell you if the password that you chose too easy. As you\n"
-"can see, you are not forced to enter a password, but we strongly advise you\n"
-"against this. GNU/Linux is just as prone to operator error as any other\n"
-"operating system. Since \"root\" can overcome all limitations and\n"
-"unintentionally erase all data on partitions by carelessly accessing the\n"
-"partitions themselves, it is important that it be difficult to become\n"
-"\"root\".\n"
-"\n"
-"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password -- it makes it far\n"
-"too easy to compromise a system.\n"
-"\n"
-"One caveat -- do not make the password too long or complicated because you\n"
-"must be able to remember it!\n"
-"\n"
-"The password will not be displayed on screen as you type it in. To reduce\n"
-"the chance of a blind typing error you will need to enter the password\n"
-"twice. If you do happen to make the same typing error twice, this\n"
-"``incorrect'' password will be the one you will have use the first time you\n"
-"connect.\n"
-"\n"
-"If you wish access to this computer to be controlled by an authentication\n"
-"server, click the \"%s\" button.\n"
-"\n"
-"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
-"services, select the appropriate one for \"%s\". If you do not know which\n"
-"one to use, you should ask your network administrator.\n"
-"\n"
-"If you happen to have problems with remembering passwords, if your computer\n"
-"will never be connected to the internet or that you absolutely trust\n"
-"everybody who uses your computer, you can choose to have \"%s\"."
+msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/draksplash:428
#, c-format
-msgid "Name resolution spoofing protection"
+msgid "ProgressBar color selection"
msgstr ""
-#: ../../help.pm:1
+#: standalone/draksplash:448
#, c-format
-msgid ""
-"At this point, DrakX will allow you to choose the security level desired\n"
-"for the machine. As a rule of thumb, the security level should be set\n"
-"higher if the machine will contain crucial data, or if it will be a machine\n"
-"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use.\n"
-"\n"
-"If you do not know what to choose, stay with the default option."
+msgid "You must choose an image file first!"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/draksplash:453
#, c-format
-msgid "Load from floppy"
+msgid "Generating preview ..."
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/draksplash:499
#, c-format
-msgid "The following printer was auto-detected. "
+msgid "%s BootSplash (%s) preview"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakups:63
#, c-format
-msgid "Uses command %s"
+msgid "Connected through a serial port or an usb cable"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakups:69
#, c-format
-msgid "Boot Floppy"
+msgid "Add an UPS device"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: standalone/drakups:72
#, c-format
-msgid "Norwegian"
+msgid ""
+"Welcome to the UPS configuration utility.\n"
+"\n"
+"Here, you'll be add a new UPS to your system.\n"
+""
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/drakups:79
#, c-format
-msgid "Searching for new scanners ..."
+msgid ""
+"We're going to add an UPS device.\n"
+"\n"
+"Do you prefer autodetect UPS devices connected to this machine or ?"
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/drakups:82
#, c-format
-msgid "Apache World Wide Web Server"
+msgid "Autodetection"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakups:90 standalone/harddrake2:133
#, c-format
-msgid "stepping of the cpu (sub model (generation) number)"
+msgid "Detection in progress"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakups:108 standalone/drakups:144 standalone/logdrake:406
#, c-format
-msgid "select path to restore (instead of /)"
+msgid "Congratulations"
msgstr ""
-#: ../../standalone/draksplash:1 ../../standalone/draksplash:1
+#: standalone/drakups:109
#, c-format
-msgid "Configure bootsplash picture"
+msgid "The wizard successfully added the following UPS devices:"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakups:111
#, c-format
-msgid "Georgia"
+msgid "No new UPS devices was found"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakups:116 standalone/drakups:128
#, c-format
-msgid "China"
+msgid "UPS driver configuration"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakups:116
+#, c-format
+msgid "Please select your UPS model."
+msgstr ""
+
+#: standalone/drakups:117
+#, c-format
+msgid "Manufacturer / Model:"
+msgstr ""
+
+#: standalone/drakups:128
#, c-format
msgid ""
-" (Make sure that all your printers are connected and turned on).\n"
-""
+"We are configuring the \"%s\" UPS from \"%s\".\n"
+"Please fill in its name, its driver and its port."
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakups:133
#, c-format
-msgid "Reading data of installed printers..."
+msgid "Name:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakups:133
#, c-format
-msgid " Erase Now "
+msgid "The name of your ups"
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/drakups:134
#, c-format
-msgid "server"
+msgid "The driver that manage your ups"
msgstr ""
-#: ../../install_any.pm:1
+#: standalone/drakups:135
#, c-format
-msgid "Insert a FAT formatted floppy in drive %s"
+msgid "Port:"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakups:137
#, c-format
-msgid "yes means the processor has an arithmetic coprocessor"
+msgid "The port on which is connected your ups"
msgstr ""
-#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
+#: standalone/drakups:144
#, c-format
-msgid "Please Wait... Applying the configuration"
+msgid "The wizard successfully configured the new \"%s\" UPS device."
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:1
+#: standalone/drakups:184 standalone/harddrake2:98 standalone/printerdrake:149
#, c-format
-msgid "Welcome to GRUB the operating system chooser!"
+msgid "/_Quit"
msgstr ""
-#: ../../bootloader.pm:1
+#: standalone/drakups:186 standalone/harddrake2:85 standalone/harddrake2:106 standalone/logdrake:76 standalone/printerdrake:168 standalone/printerdrake:169 standalone/printerdrake:169 standalone/printerdrake:170 standalone/printerdrake:171
#, c-format
-msgid "Grub"
+msgid "/_Help"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/drakups:187 standalone/harddrake2:120 standalone/printerdrake:170
#, c-format
-msgid "SCSI controllers"
+msgid "/_Report Bug"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/drakups:188 standalone/harddrake2:121 standalone/printerdrake:171
#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
+msgid "/_About..."
msgstr ""
-#: ../../standalone/drakedm:1
+#: standalone/drakups:189
#, c-format
-msgid "Choosing a display manager"
+msgid "About DrakUPS"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/drakups:191
#, c-format
-msgid "Zeroconf Host name"
+msgid ""
+"This is DrakUPS, a Mandrake configuration tool for UPS devices.\n"
+"\n"
+"Author:</span> Thierry Vignaud &lt;tvignaud@mandrakesoft.com&gt;\n"
+"\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakups:249
#, c-format
-msgid "Custom setup/crontab entry:"
+msgid "UPS devices"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakups:250 standalone/drakups:268 standalone/drakups:283 standalone/harddrake2:63
#, c-format
-msgid "IP address should be in format 1.2.3.4"
+msgid "Name"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/drakups:267
#, c-format
-msgid "Configure CUPS printing system"
+msgid "UPS users"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakups:282
#, c-format
-msgid "Ecuador"
+msgid "Access Control Lists"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: standalone/drakups:283
#, c-format
-msgid "Add an item"
+msgid "IP mask"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakups:294
#, c-format
-msgid "The printers on this machine are available to other computers"
+msgid "Rules"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakups:295
#, c-format
-msgid "China (Hong Kong)"
+msgid "Action"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: standalone/drakups:295 standalone/harddrake2:57
#, c-format
-msgid "I can't find needed image file `%s'."
+msgid "Level"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/drakups:295
#, c-format
-msgid "No sound card detected. Try \"harddrake\" after installation"
+msgid "ACL name"
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: standalone/drakups:313
#, c-format
-msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+msgid "DrakUPS"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakups:322
#, c-format
-msgid "Shell"
+msgid "Welcome to the UPS configuration tools"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakxtv:46
#, c-format
-msgid "Sao Tome and Principe"
+msgid "USA (broadcast)"
msgstr ""
-#: ../../network/isdn.pm:1
+#: standalone/drakxtv:46
#, c-format
-msgid "PCI"
+msgid "USA (cable)"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: standalone/drakxtv:46
#, c-format
-msgid "Can't login using username %s (bad password?)"
+msgid "USA (cable-hrc)"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/drakxtv:46
#, c-format
-msgid "Azerbaidjani (latin)"
+msgid "Canada (cable)"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/drakxtv:47
#, c-format
-msgid "Package not installed"
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/drakxtv:47
#, c-format
-msgid "American Samoa"
+msgid "Japan (cable)"
msgstr ""
-#: ../advertising/12-mdkexpert.pl:1
+#: standalone/drakxtv:47
#, c-format
-msgid "Become a MandrakeExpert"
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/drakxtv:48
#, c-format
-msgid "Protocol"
+msgid "West Europe"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/drakxtv:48
#, c-format
-msgid "Copy fonts on your system"
+msgid "East Europe"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakxtv:48
#, c-format
-msgid "Harddrake help"
+msgid "France [SECAM]"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/drakxtv:49
#, c-format
-msgid "Bogomips"
+msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/drakxtv:52
#, c-format
-msgid "Mandrake Terminal Server Configuration"
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakxtv:84
#, c-format
msgid ""
-"\n"
-" DrakBackup Report Details\n"
-"\n"
-"\n"
-""
+"Please,\n"
+"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakxtv:86
#, c-format
-msgid "Restore all backups"
+msgid "TV norm:"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/drakxtv:87
#, c-format
-msgid " on parallel port #%s"
+msgid "Area:"
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakxtv:91
#, c-format
-msgid "Set the password minimum length and minimum number of digit and minimum number of capitalized letters."
+msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../security/help.pm:1
+#: standalone/drakxtv:101
#, c-format
-msgid "if set to yes, check open ports."
+msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakxtv:105
#, c-format
-msgid "This may take a moment to erase the media."
+msgid "There was an error while scanning for TV channels"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/drakxtv:106
#, c-format
-msgid "You can't select/unselect this package"
+msgid "XawTV isn't installed!"
msgstr ""
-#: ../../keyboard.pm:1 ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../standalone/drakclock:1 ../../standalone/drakfloppy:1 ../../standalone/drakups:1
+#: standalone/drakxtv:109
#, c-format
-msgid "Warning"
+msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/drakxtv:110
#, c-format
msgid ""
-"\n"
-"- Other Files:\n"
+"Now, you can run xawtv (under X Window!) !\n"
""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/drakxtv:131
#, c-format
-msgid "Remote host name"
+msgid "No TV Card detected!"
msgstr ""
-#: ../../any.pm:1
+#: standalone/drakxtv:132
#, c-format
-msgid "access to X programs"
+msgid ""
+"No TV Card has been detected on your machine. Please verify that a Linux-supported Video/TV Card is correctly plugged in.\n"
+"\n"
+"\n"
+"You can visit our hardware database at:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../install_interactive.pm:1
+#: standalone/harddrake2:18
#, c-format
-msgid "Computing the size of the Windows partition"
+msgid "Alternative drivers"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/harddrake2:19
#, c-format
-msgid "/_Refresh"
+msgid "the list of alternative drivers for this sound card"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1 ../../network/netconnect.pm:1 ../../network/netconnect.pm:1 ../../standalone/drakxtv:1
+#: standalone/harddrake2:22
#, c-format
-msgid "Italy"
+msgid "this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/harddrake2:23
#, c-format
-msgid "Cayman Islands"
+msgid "Channel"
msgstr ""
-#: ../../fs.pm:1 ../../partition_table.pm:1
+#: standalone/harddrake2:23
#, c-format
-msgid "error unmounting %s: %s"
+msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:24
#, c-format
-msgid "Name of printer"
+msgid "Bogomips"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/harddrake2:24
#, c-format
-msgid "disable"
+msgid "the GNU/Linux kernel needs to run a calculation loop at boot time to initialize a timer counter. Its result is stored as bogomips as a way to \"benchmark\" the cpu."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:26
#, c-format
-msgid "Do it!"
+msgid "Bus identification"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/harddrake2:27
#, c-format
-msgid "%s not responding"
+msgid "- PCI and USB devices: this lists the vendor, device, subvendor and subdevice PCI/USB ids"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:30
#, c-format
-msgid "Select model manually"
+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 ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/harddrake2:33
#, c-format
-msgid "Format"
+msgid "Cache size"
msgstr ""
-#: ../../network/adsl.pm:1
+#: standalone/harddrake2:33
#, c-format
-msgid ""
-"The most common way to connect with adsl is pppoe.\n"
-"Some connections use pptp, a few use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+msgid "size of the (second level) cpu cache"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/harddrake2:34
#, c-format
-msgid "Various"
+msgid "Drive capacity"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/harddrake2:34
#, c-format
-msgid "Zip"
+msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/harddrake2:36
#, c-format
-msgid "Left Alt key"
+msgid "Coma bug"
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/harddrake2:36
#, c-format
-msgid "Load setting"
+msgid "whether this cpu has the Cyrix 6x86 Coma bug"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:37
#, c-format
-msgid ""
-"\n"
-"\n"
-"Printerdrake could not determine which model your printer %s is. Please choose the correct model from the list."
+msgid "Cpuid family"
msgstr ""
-#: ../../standalone/printerdrake:1
+#: standalone/harddrake2:37
#, c-format
-msgid "Set selected printer as the default printer"
+msgid "family of the cpu (eg: 6 for i686 class)"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:38
#, c-format
-msgid ""
-"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+msgid "Cpuid level"
msgstr ""
-#: ../../printer/data.pm:1
+#: standalone/harddrake2:38
#, c-format
-msgid "PDQ"
+msgid "information level that can be obtained through the cpuid instruction"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/harddrake2:39
#, c-format
-msgid "Albanian"
+msgid "Frequency (MHz)"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/harddrake2:39
#, c-format
-msgid "Lithuania"
+msgid "the CPU frequency in MHz (Megahertz which in first approximation may be coarsely assimilated to number of instructions the cpu is able to execute per second)"
msgstr ""
-#: ../../any.pm:1
+#: standalone/harddrake2:40
#, c-format
-msgid "Compact"
+msgid "this field describes the device"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:41
#, c-format
-msgid "Detected model: %s %s"
+msgid "Old device file"
msgstr ""
-#: ../advertising/03-software.pl:1
+#: standalone/harddrake2:42
#, c-format
-msgid "MandrakeSoft has selected the best software for you"
+msgid "old static device name used in dev package"
msgstr ""
-#: ../../any.pm:1
+#: standalone/harddrake2:43
#, c-format
-msgid "Local files"
+msgid "New devfs device"
msgstr ""
-#: ../../pkgs.pm:1
+#: standalone/harddrake2:44
#, c-format
-msgid "maybe"
+msgid "new dynamic device name generated by core kernel devfs"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/harddrake2:46
#, c-format
-msgid "Panama"
+msgid "Module"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/harddrake2:46
#, c-format
-msgid "Can't open %s!"
+msgid "the module of the GNU/Linux kernel that handles the device"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: standalone/harddrake2:47
#, c-format
-msgid ""
-"Your graphic card seems to have a TV-OUT connector.\n"
-"It can be configured to work using frame-buffer.\n"
-"\n"
-"For this you have to plug your graphic card to your TV before booting your computer.\n"
-"Then choose the \"TVout\" entry in the bootloader\n"
-"\n"
-"Do you have this feature?"
+msgid "Flags"
msgstr ""
-#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#: standalone/harddrake2:47
#, c-format
-msgid "Monitor"
+msgid "CPU flags reported by the kernel"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:48
#, c-format
-msgid ""
-"You are about to set up printing to a Windows account with password. Due to a fault in the architecture of the Samba client software the password is put in clear text into the command line of the Samba client used to transmit the print job to the Windows server. So it is possible for every user on this machine to display the password on the screen by issuing commands as \"ps auxwww\".\n"
-"\n"
-"We recommend to make use of one of the following alternatives (in all cases you have to make sure that only machines from your local network have access to your Windows server, for example by means of a firewall):\n"
-"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account or a special account dedicated for printing. Do not remove the password protection from a personal account or the administrator account.\n"
-"\n"
-"Set up your Windows server to make the printer available under the LPD protocol. Then set up printing from this machine with the \"%s\" connection type in Printerdrake.\n"
-"\n"
-""
+msgid "Fdiv bug"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: standalone/harddrake2:49
#, c-format
-msgid "65 thousand colors (16 bits)"
+msgid "Early Intel Pentium chips manufactured have a bug in their floating point processor which did not achieve the required precision when performing a Floating point DIVision (FDIV)"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/harddrake2:50
#, c-format
-msgid ""
-"\n"
-"- Save on Hard drive on path: %s\n"
-""
+msgid "Is FPU present"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/harddrake2:50
#, c-format
-msgid "Remove fonts on your system"
+msgid "yes means the processor has an arithmetic coprocessor"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/harddrake2:51
#, c-format
-msgid ""
-"Warning, the network adapter (%s) is already configured.\n"
-"\n"
-"Do you want an automatic re-configuration?\n"
-"\n"
-"You can do it manually but you need to know what you're doing."
+msgid "Whether the FPU has an irq vector"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: standalone/harddrake2:51
#, c-format
-msgid "Graphical interface at startup"
+msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
-#: ../../raid.pm:1
+#: standalone/harddrake2:52
#, c-format
-msgid ""
-"Not enough partitions for RAID level %d\n"
-""
+msgid "F00f bug"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/harddrake2:52
#, c-format
-msgid "format of floppies supported by the drive"
+msgid "early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
-#: ../../network/tools.pm:1
+#: standalone/harddrake2:53
#, c-format
-msgid "Firmware copy failed, file %s not found"
+msgid "Halt bug"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/harddrake2:54
#, c-format
-msgid "local config: true"
+msgid "Some of the early i486DX-100 chips cannot reliably return to operating mode after the \"halt\" instruction is used"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:56
#, c-format
-msgid "The following printers are configured. Double-click on a printer to change its settings; to make it the default printer; or to view information about it."
+msgid "Floppy format"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#: standalone/harddrake2:56
#, c-format
-msgid "Connected"
+msgid "format of floppies supported by the drive"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/harddrake2:57
#, c-format
-msgid "Macedonian"
+msgid "sub generation of the cpu"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/harddrake2:58
#, c-format
-msgid "Mali"
+msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/harddrake2:59 standalone/harddrake2:60 standalone/printerdrake:209
#, c-format
-msgid "Bridges and system controllers"
+msgid "Model"
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/harddrake2:59
#, c-format
-msgid "/File/_Save"
+msgid "hard disk model"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/harddrake2:60
#, c-format
-msgid "No details"
+msgid "generation of the cpu (eg: 8 for PentiumIII, ...)"
msgstr ""
-#: ../../pkgs.pm:1
+#: standalone/harddrake2:61
#, c-format
-msgid "very nice"
+msgid "Model name"
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/harddrake2:61
#, c-format
-msgid "Preview"
+msgid "official vendor name of the cpu"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/harddrake2:62
#, c-format
-msgid "Remote Control"
+msgid "Number of buttons"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/harddrake2:62
#, c-format
-msgid "Please select media for backup..."
+msgid "the number of buttons the mouse has"
msgstr ""
-#: ../../standalone/logdrake:1
+#: standalone/harddrake2:63
#, c-format
-msgid "Wrong email"
+msgid "the name of the CPU"
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: standalone/harddrake2:64
#, c-format
-msgid ""
-"XFree86 server: %s\n"
-""
+msgid "network printer port"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/harddrake2:65
#, c-format
-msgid "Allow Thin Clients"
+msgid "Processor ID"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/harddrake2:65
#, c-format
-msgid "Georgian (\"Russian\" layout)"
+msgid "the number of the processor"
msgstr ""
-#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: standalone/harddrake2:66
#, c-format
-msgid "/_Options"
+msgid "Model stepping"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:66
#, c-format
-msgid "Your printer model"
+msgid "stepping of the cpu (sub model (generation) number)"
msgstr ""
-#: ../../any.pm:1
+#: standalone/harddrake2:67
#, c-format
-msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
+msgid "the type of bus on which the mouse is connected"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/harddrake2:68
#, c-format
-msgid ""
-"\n"
-"- Delete hard drive tar files after backup.\n"
-""
+msgid "the vendor name of the device"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: standalone/harddrake2:69
#, c-format
-msgid "No CD or DVD image found, please copy the installation program and rpm files."
+msgid "the vendor name of the processor"
msgstr ""
-#: ../advertising/04-configuration.pl:1
+#: standalone/harddrake2:70
#, c-format
-msgid "Mandrake's multipurpose configuration tool"
+msgid "Write protection"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/logdrake:1
+#: standalone/harddrake2:70
#, c-format
-msgid "Save"
+msgid "the WP flag in the CR0 register of the cpu enforce write proctection at the memory page level, thus enabling the processor to prevent unchecked kernel accesses to user memory (aka this is a bug guard)"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/harddrake2:84 standalone/logdrake:74 standalone/printerdrake:143 standalone/printerdrake:156
#, c-format
-msgid "The %s is unsupported"
+msgid "/_Options"
msgstr ""
-#: ../../services.pm:1
+#: standalone/harddrake2:89
#, c-format
-msgid "Load the drivers for your usb devices."
+msgid "/Autodetect _printers"
msgstr ""
-#: ../../harddrake/data.pm:1
+#: standalone/harddrake2:90
#, c-format
-msgid "Disk"
+msgid "/Autodetect _modems"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:91
#, c-format
-msgid "Enter a printer device URI"
+msgid "/Autodetect _jaz drives"
msgstr ""
-#: ../advertising/01-thanks.pl:1
+#: standalone/harddrake2:107
#, c-format
-msgid "The success of MandrakeSoft is based upon the principle of Free Software. Your new operating system is the result of collaborative work of the worldwide Linux Community."
+msgid "/_Fields description"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/harddrake2:109
#, c-format
-msgid "Israel"
+msgid "Harddrake help"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/harddrake2:110
#, c-format
-msgid "French Guiana"
+msgid ""
+"Description of the fields:\n"
+"\n"
+""
msgstr ""
-#: ../../lang.pm:1
+#: standalone/harddrake2:115
#, c-format
-msgid "default:LTR"
+msgid "Select a device !"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:115
#, c-format
-msgid "A command line must be entered!"
+msgid "Once you've selected a device, you'll be able to see the device information in fields displayed on the right frame (\"Information\")"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/harddrake2:122
#, c-format
-msgid "Select user manually"
+msgid "About Harddrake"
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:124
#, c-format
-msgid "Transfer printer configuration"
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"<span foreground=\"royalblue3\">Version:</span> %s\n"
+"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;tvignaud@mandrakesoft.com&gt;\n"
+"\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/harddrake2:141
#, c-format
-msgid ""
-"Do you want to enable printing on the printers mentioned above?\n"
-""
+msgid "Harddrake2 version %s"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/harddrake2:158
#, c-format
-msgid "Check additions/removals of suid root files"
+msgid "Detected hardware"
msgstr ""
-#: ../../any.pm:1
+#: standalone/harddrake2:161
#, c-format
-msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are good."
+msgid "Information"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/harddrake2:163
#, c-format
-msgid "%s (Port %s)"
+msgid "Configure module"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/harddrake2:170
#, c-format
-msgid "Use network connection to backup"
+msgid "Run config tool"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/harddrake2:176
#, c-format
-msgid "Kernel version"
+msgid "Running \"%s\" ..."
msgstr ""
-#: ../../help.pm:1
+#: standalone/harddrake2:214
#, c-format
-msgid ""
-"It is now time to specify which programs you wish to install on your\n"
-"system. There are thousands of packages available for Mandrake Linux, and\n"
-"to make it simpler to manage the packages have been placed into groups of\n"
-"similar applications.\n"
-"\n"
-"Packages are sorted into groups corresponding to a particular use of your\n"
-"machine. Mandrake Linux has four predefined installations available. You\n"
-"can think of these installation classes as containers for various packages.\n"
-"You can mix and match applications from the various groups, so a\n"
-"``Workstation'' installation can still have applications from the\n"
-"``Development'' group installed.\n"
-"\n"
-" * \"%s\": if you plan to use your machine as a workstation, select one or\n"
-"more of the applications that are in the workstation group.\n"
-"\n"
-" * \"%s\": if plan on using your machine for programming, choose the\n"
-"appropriate packages from that group.\n"
-"\n"
-" * \"%s\": if your machine is intended to be a server, select which of the\n"
-"more common services you wish to install on your machine.\n"
-"\n"
-" * \"%s\": this is where you will choose your preferred graphical\n"
-"environment. At least one must be selected if you want to have a graphical\n"
-"interface available.\n"
-"\n"
-"Moving the mouse cursor over a group name will display a short explanatory\n"
-"text about that group. If you unselect all groups when performing a regular\n"
-"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
-"different options for a minimal installation:\n"
-"\n"
-" * \"%s\": install the minimum number of packages possible to have a\n"
-"working graphical desktop.\n"
-"\n"
-" * \"%s\": installs the base system plus basic utilities and their\n"
-"documentation. This installation is suitable for setting up a server.\n"
-"\n"
-" * \"%s\": will install the absolute minimum number of packages necessary\n"
-"to get a working Linux system. With this installation you will only have a\n"
-"command line interface. The total size of this installation is about 65\n"
-"megabytes.\n"
-"\n"
-"You can check the \"%s\" box, which is useful if you are familiar with the\n"
-"packages being offered or if you want to have total control over what will\n"
-"be installed.\n"
-"\n"
-"If you started the installation in \"%s\" mode, you can unselect all groups\n"
-"to avoid installing any new package. This is useful for repairing or\n"
-"updating an existing system."
+msgid "unknown"
msgstr ""
-#: ../../any.pm:1 ../../help.pm:1
+#: standalone/harddrake2:215
#, c-format
-msgid "Accept user"
+msgid "Unknown"
msgstr ""
-#: ../../help.pm:1 ../../diskdrake/dav.pm:1
+#: standalone/harddrake2:233
#, c-format
-msgid "Server"
+msgid "Click on a device in the left tree in order to display its information here."
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/harddrake2:273
#, c-format
-msgid "Left Shift key"
+msgid "secondary"
msgstr ""
-#: ../../interactive/stdio.pm:1 ../../interactive/stdio.pm:1
+#: standalone/harddrake2:273
#, c-format
-msgid ""
-"Bad choice, try again\n"
-""
+msgid "primary"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/harddrake2:281
#, c-format
-msgid "Syslog reports to console 12"
+msgid "burner"
msgstr ""
-#: ../../diskdrake/smbnfs_gtk.pm:1
+#: standalone/harddrake2:281
#, c-format
-msgid "Search new servers"
+msgid "DVD"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/keyboarddrake:24
#, c-format
-msgid "Heard and McDonald Islands"
+msgid "Please, choose your keyboard layout."
msgstr ""
-#: ../../standalone/net_monitor:1
+#: standalone/keyboarddrake:33
#, c-format
-msgid "Instantaneous"
+msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
-#: ../../harddrake/sound.pm:1
+#: standalone/localedrake:60
#, c-format
-msgid "No alternative driver"
+msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/logdrake:50
#, c-format
-msgid "Toggle to expert mode"
+msgid "logdrake"
msgstr ""
-#: ../../printer/cups.pm:1
+#: standalone/logdrake:61
#, c-format
-msgid "(on this machine)"
+msgid "Show only for the selected day"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/logdrake:68
#, c-format
-msgid "Gateway address should be in format 1.2.3.4"
+msgid "/File/_New"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/logdrake:68
#, c-format
-msgid "\"%s\" based winmodem detected, do you want to install needed software ?"
+msgid "<control>N"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/logdrake:69
#, c-format
-msgid "Looking at packages already installed..."
+msgid "/File/_Open"
msgstr ""
-#: ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: standalone/logdrake:69
#, c-format
-msgid "Use Differential Backups"
+msgid "<control>O"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakups:1
+#: standalone/logdrake:70
#, c-format
-msgid "Driver"
+msgid "/File/_Save"
msgstr ""
-#: ../../services.pm:1
+#: standalone/logdrake:70
#, c-format
-msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+msgid "<control>S"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/logdrake:71
#, c-format
-msgid "DVD-R device"
+msgid "/File/Save _As"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/logdrake:72
#, c-format
-msgid "Printer on remote lpd server"
+msgid "/File/-"
msgstr ""
-#: ../../standalone/drakfont:1 ../../standalone/drakfont:1
+#: standalone/logdrake:75
#, c-format
-msgid ""
-"Before installing any fonts, be sure that you have the right to use and install them on your system.\n"
-"\n"
-"-You can install the fonts the normal way. In rare cases, bogus fonts may hang up your X Server."
+msgid "/Options/Test"
msgstr ""
-#: ../../help.pm:1
+#: standalone/logdrake:77
#, c-format
-msgid ""
-"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
-"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
-"detected and installed in the bootloader menu. If this is not the case, you\n"
-"can add an entry by hand in this screen. Be careful to choose the correct\n"
-"parameters.\n"
-"\n"
-"Yaboot's main options are:\n"
-"\n"
-" * Init Message: a simple text message displayed before the boot prompt.\n"
-"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information.\n"
-"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
-"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second increments\n"
-"before your default kernel description is selected;\n"
-"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt.\n"
-"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt.\n"
-"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
+msgid "/Help/_About..."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/logdrake:110
#, c-format
-msgid "Wednesday"
+msgid "Messages"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
+#: standalone/logdrake:111
#, c-format
-msgid "Germany"
+msgid "Syslog"
msgstr ""
-#: ../../crypto.pm:1 ../../crypto.pm:1 ../../lang.pm:1
+#: standalone/logdrake:112
#, c-format
-msgid "Austria"
+msgid "Mandrake Tools Explanation"
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/logdrake:115
#, c-format
-msgid "No mouse"
+msgid "search"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/logdrake:127
#, c-format
-msgid "Choose your CD/DVD media size (MB)"
+msgid "A tool to monitor your logs"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/logdrake:128 standalone/net_monitor:90
#, c-format
-msgid "Check permissions of files in the users' home"
+msgid "Settings"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/logdrake:133
#, c-format
-msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgid "Matching"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/logdrake:134
#, c-format
-msgid "Configure networking"
+msgid "but not matching"
msgstr ""
-#: ../../ugtk2.pm:1
+#: standalone/logdrake:138
#, c-format
-msgid "Collapse Tree"
+msgid "Choose file"
msgstr ""
-#: ../../standalone/drakautoinst:1
+#: standalone/logdrake:147
#, c-format
-msgid "Auto Install Configurator"
+msgid "Calendar"
msgstr ""
-#: ../../any.pm:1
+#: standalone/logdrake:157
#, c-format
-msgid "Where do you want to install the bootloader?"
+msgid "Content of the file"
msgstr ""
-#: ../../help.pm:1
+#: standalone/logdrake:161 standalone/logdrake:366
#, c-format
-msgid ""
-"Your choice of preferred language will affect the language of the\n"
-"documentation, the installer and the system in general. Select first the\n"
-"region you are located in, and then the language you speak.\n"
-"\n"
-"Clicking on the \"%s\" button will allow you to select other languages to\n"
-"be installed on your workstation, thereby installing the language-specific\n"
-"files for system documentation and applications. For example, if you will\n"
-"host users from Spain on your machine, select English as the default\n"
-"language in the tree view and \"%s\" in the Advanced section.\n"
-"\n"
-"Note that you're not limited to choosing a single additional language. You\n"
-"may choose several ones, or even install them all by selecting the \"%s\"\n"
-"box. Selecting support for a language means translations, fonts, spell\n"
-"checkers, etc. for that language will be installed. Additionally, the\n"
-"\"%s\" checkbox allows you to force the system to use unicode (UTF-8). Note\n"
-"however that this is an experimental feature. If you select different\n"
-"languages requiring different encoding the unicode support will be\n"
-"installed anyway.\n"
-"\n"
-"To switch between the various languages installed on the system, you can\n"
-"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
-"language used by the entire system. Running the command as a regular user\n"
-"will only change the language settings for that particular user."
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/logdrake:168
#, c-format
-msgid "The %s is not supported by this version of Mandrake Linux."
+msgid "The alert wizard had unexpectly failled:"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/logdrake:216
#, c-format
-msgid "tape"
+msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/logdrake:350
#, c-format
-msgid "DHCP client"
+msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/logdrake:351
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "Domain Name Resolver"
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/logdrake:352
#, c-format
-msgid "Logitech Mouse (serial, old C7 type)"
+msgid "Ftp Server"
msgstr ""
-#: ../../partition_table.pm:1
+#: standalone/logdrake:353
#, c-format
-msgid "Restoring from file %s failed: %s"
+msgid "Postfix Mail Server"
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/logdrake:354
#, c-format
-msgid ""
-"I can't read the partition table of device %s, it's too corrupted for me :(\n"
-"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to not allow DrakX to modify the partition table.\n"
-"(the error is %s)\n"
-"\n"
-"Do you agree to lose all the partitions?\n"
-""
+msgid "Samba Server"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/logdrake:355
#, c-format
-msgid "Find Package"
+msgid "SSH Server"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/logdrake:356
#, c-format
-msgid ""
-"Are you sure that you want to set up printing on this machine?\n"
-""
+msgid "Webmin Service"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/logdrake:357
#, c-format
-msgid "New devfs device"
+msgid "Xinetd Service"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/logdrake:369
#, c-format
-msgid "ERROR: Cannot spawn %s."
+msgid "Mail alert configuration"
msgstr ""
-#: ../../standalone/drakboot:1
+#: standalone/logdrake:370
#, c-format
-msgid "Boot Style Configuration"
+msgid ""
+"Welcome to the mail configuration utility.\n"
+"\n"
+"Here, you'll be able to set up the alert system.\n"
+""
msgstr ""
-#: ../../help.pm:1
+#: standalone/logdrake:375
#, c-format
-msgid "Automatic time synchronization"
+msgid "Services settings"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/logdrake:376
#, c-format
-msgid "Backup files not found at %s."
+msgid "You will receive an alert if one of the selected services is no longer running"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/logdrake:383
#, c-format
-msgid "Armenian (phonetic)"
+msgid "Load setting"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: standalone/logdrake:384
#, c-format
-msgid "Card model:"
+msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/logdrake:385
#, c-format
-msgid "Thin Client"
+msgid ""
+"_: load here is a noun, the load of the system\n"
+"Load"
msgstr ""
-#: ../advertising/01-thanks.pl:1
+#: standalone/logdrake:390
#, c-format
-msgid "Thank you for choosing Mandrake Linux 9.2"
+msgid "Alert configuration"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/logdrake:391
#, c-format
-msgid "Start Server"
+msgid "Please enter your email address below "
msgstr ""
-#: ../../lang.pm:1
+#: standalone/logdrake:398
#, c-format
-msgid "Turkmenistan"
+msgid "Wrong email"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/logdrake:398
#, c-format
-msgid "All remote machines"
+msgid "\"%s\" neither is a valid email nor is an existing local user!"
msgstr ""
-#: ../../standalone/drakboot:1
+#: standalone/logdrake:406
#, c-format
-msgid "Install themes"
+msgid "The wizard successfully configured the mail alert."
msgstr ""
-#: ../../help.pm:1
+#: standalone/logdrake:464
#, c-format
-msgid "Espanol"
+msgid "Save as.."
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/mousedrake:41
#, c-format
-msgid "Preparing installation"
+msgid "Please choose your mouse type."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/mousedrake:54
#, c-format
-msgid "Edit selected host/network"
+msgid "Emulate third button?"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/mousedrake:70
#, c-format
-msgid "Add User -->"
+msgid "Mouse test"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/mousedrake:73
#, c-format
-msgid "Nauru"
+msgid "Please test your mouse:"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/net_monitor:51 standalone/net_monitor:56
#, c-format
-msgid "True Type fonts installation"
+msgid "Network Monitoring"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/net_monitor:96
#, c-format
-msgid "Auto-detect printers connected directly to the local network"
+msgid "Global statistics"
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: standalone/net_monitor:99
#, c-format
-msgid "LAN configuration"
+msgid "Instantaneous"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/net_monitor:99
#, c-format
-msgid "hard disk model"
+msgid "Average"
msgstr ""
-#: ../../standalone/drakTermServ:1
+#: standalone/net_monitor:100
#, c-format
msgid ""
-" - Maintain /etc/exports:\n"
-" \tClusternfs allows export of the root filesystem to diskless clients. drakTermServ\n"
-" \tsets up the correct entry to allow anonymous access to the root filesystem from\n"
-" \tdiskless clients.\n"
-"\n"
-" \tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t/\t\t\t\t\t(ro,all_squash)\n"
-" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-" \tWith SUBNET/MASK being defined for your network."
+"Sending\n"
+"speed:"
msgstr ""
-#: ../../fsedit.pm:1
+#: standalone/net_monitor:101
#, c-format
-msgid "You can't use a LVM Logical Volume for mount point %s"
+msgid ""
+"Receiving\n"
+"speed:"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/net_monitor:104
#, c-format
-msgid "Get Windows Fonts"
+msgid ""
+"Connection\n"
+"time: "
msgstr ""
-#: ../../mouse.pm:1
+#: standalone/net_monitor:126
#, c-format
-msgid "Mouse Systems"
+msgid "Wait please, testing your connection..."
msgstr ""
-#: ../../standalone/drakclock:1
+#: standalone/net_monitor:154 standalone/net_monitor:167
#, c-format
-msgid ""
-"Your computer can synchronize its clock\n"
-" with a remote time server using NTP"
+msgid "Disconnecting from Internet "
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/net_monitor:154 standalone/net_monitor:167
#, c-format
-msgid "Iranian"
+msgid "Connecting to Internet "
msgstr ""
-#: ../../lang.pm:1
+#: standalone/net_monitor:198
#, c-format
-msgid "Croatia"
+msgid "Disconnection from Internet failed."
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/net_monitor:199
#, c-format
-msgid "Install firmware file from"
+msgid "Disconnection from Internet complete."
msgstr ""
-#: ../../standalone/drakconnect:1 ../../standalone/drakconnect:1
+#: standalone/net_monitor:201
#, c-format
-msgid "Gateway:"
+msgid "Connection complete."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/net_monitor:202
#, c-format
-msgid "Add server"
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/net_monitor:300
#, c-format
-msgid "Remote printer name"
+msgid "Color configuration"
msgstr ""
-#: ../advertising/10-security.pl:1
+#: standalone/net_monitor:348 standalone/net_monitor:368
#, c-format
-msgid "MandrakeSoft has designed exclusive tools to create the most secured Linux version ever: Draksec, a system security management tool, and a strong firewall are teamed up together in order to highly reduce hacking risks."
+msgid "sent: "
msgstr ""
-#: ../../diskdrake/interactive.pm:1 ../../diskdrake/interactive.pm:1
+#: standalone/net_monitor:355 standalone/net_monitor:372
#, c-format
-msgid "Device: "
+msgid "received: "
msgstr ""
-#: ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1 ../../standalone/printerdrake:1
+#: standalone/net_monitor:362
#, c-format
-msgid "Printerdrake"
+msgid "average"
msgstr ""
-#: ../../install_steps_interactive.pm:1
+#: standalone/net_monitor:365
#, c-format
-msgid "License agreement"
+msgid "Local measure"
msgstr ""
-#: ../../standalone/draksec:1
+#: standalone/net_monitor:398
#, c-format
-msgid "System Options"
+msgid "transmitted"
msgstr ""
-#: ../../security/level.pm:1
+#: standalone/net_monitor:399
#, c-format
-msgid "Please choose the desired security level"
+msgid "received"
msgstr ""
-#: ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/net_monitor:417
#, c-format
-msgid ""
-"This host is already in the list, it cannot be added again.\n"
-""
+msgid "Warning, another internet connection has been detected, maybe using your network"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/net_monitor:423
#, c-format
-msgid ", USB printer"
+msgid "Disconnect %s"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/net_monitor:423
#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
+msgid "Connect %s"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/net_monitor:428
#, c-format
-msgid "Incremental backups only save files that have changed or are new since the last backup."
+msgid "No internet connection configured"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/printerdrake:67
#, c-format
-msgid "Choose the applications that will support the fonts:"
+msgid "Loading printer configuration... Please wait"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/printerdrake:83
#, c-format
-msgid "Configure X"
+msgid "Reading data of installed printers..."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/printerdrake:126
#, c-format
-msgid "hd"
+msgid "Mandrake Linux Printer Management Tool"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/printerdrake:140 standalone/printerdrake:141 standalone/printerdrake:142 standalone/printerdrake:150 standalone/printerdrake:151 standalone/printerdrake:155
#, c-format
-msgid "Turkish (traditional \"F\" model)"
+msgid "/_Actions"
msgstr ""
-#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1 ../../standalone/scannerdrake:1
+#: standalone/printerdrake:140
#, c-format
-msgid "Congratulations!"
+msgid "/Set as _Default"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/printerdrake:141
#, c-format
-msgid "Use owner id for execution"
+msgid "/_Edit"
msgstr ""
-#: ../../security/l10n.pm:1
+#: standalone/printerdrake:142
#, c-format
-msgid "Allow remote root login"
+msgid "/_Delete"
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/printerdrake:143
#, c-format
-msgid "Down"
+msgid "/_Expert mode"
msgstr ""
-#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1 ../../printer/printerdrake.pm:1
+#: standalone/printerdrake:148
#, c-format
-msgid "Raw printer (No driver)"
+msgid "/_Refresh"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/printerdrake:151
#, c-format
-msgid "Install rpm"
+msgid "/_Add Printer"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/printerdrake:155
#, c-format
-msgid ""
-"To print a file from the command line (terminal window) you can either use the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or \"kprinter <file>\". The graphical tools allow you to choose the printer and to modify the option settings easily.\n"
-""
+msgid "/_Configure CUPS"
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/printerdrake:188
#, c-format
-msgid "Time remaining "
+msgid "Search:"
msgstr ""
-#: ../../keyboard.pm:1 ../../keyboard.pm:1
+#: standalone/printerdrake:191
#, c-format
-msgid "UK keyboard"
+msgid "Apply filter"
msgstr ""
-#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#: standalone/printerdrake:209 standalone/printerdrake:216
#, c-format
-msgid "Unmount"
+msgid "Def."
msgstr ""
-#: ../../standalone/drakups:1
+#: standalone/printerdrake:209 standalone/printerdrake:216
#, c-format
-msgid "The wizard successfully added the following UPS devices:"
+msgid "Printer Name"
msgstr ""
-#: ../../mouse.pm:1 ../../mouse.pm:1
+#: standalone/printerdrake:209
#, c-format
-msgid "Microsoft Explorer"
+msgid "Connection Type"
msgstr ""
-#: ../../standalone/drakfont:1
+#: standalone/printerdrake:216
#, c-format
-msgid "Uninstall Fonts"
+msgid "Server Name"
msgstr ""
-#: ../../wizards.pm:1
+#: standalone/printerdrake:222
#, c-format
-msgid ""
-"%s is not installed\n"
-"Click \"Next\" to install or \"Cancel\" to quit"
+msgid "Add Printer"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: standalone/printerdrake:222
#, c-format
-msgid "Please wait, detecting and configuring devices..."
+msgid "Add a new printer to the system"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/printerdrake:224
#, c-format
-msgid "German (no dead keys)"
+msgid "Set as default"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/printerdrake:224
#, c-format
-msgid ""
-"\tSend mail to %s\n"
-""
+msgid "Set selected printer as the default printer"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/printerdrake:226
#, c-format
-msgid "Transferring %s..."
+msgid "Edit selected printer"
msgstr ""
-#: ../../Xconfig/resolution_and_depth.pm:1
+#: standalone/printerdrake:228
#, c-format
-msgid "32 thousand colors (15 bits)"
+msgid "Delete selected printer"
msgstr ""
-#: ../../any.pm:1
+#: standalone/printerdrake:230
#, c-format
-msgid "You can export using NFS or Samba. Please select which you'd like to use."
+msgid "Refresh"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/printerdrake:230
#, c-format
-msgid "Gambia"
+msgid "Refresh the list"
msgstr ""
-#: ../../standalone/drakbug:1
+#: standalone/printerdrake:232
#, c-format
-msgid "Mandrake Control Center"
+msgid "Configure CUPS"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: standalone/printerdrake:232
#, c-format
-msgid "Reboot"
+msgid "Configure CUPS printing system"
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/printerdrake:518
#, c-format
-msgid "Multi-function device"
+msgid "Authors: "
msgstr ""
-#: ../../network/drakfirewall.pm:1
+#: standalone/printerdrake:524
#, c-format
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"Printer Management \n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/scannerdrake:47
#, c-format
-msgid ""
-"\t-Tape \n"
-""
+msgid "Could not install the packages needed to set up a scanner with Scannerdrake."
msgstr ""
-#: ../../standalone/drakhelp:1
+#: standalone/scannerdrake:48
#, c-format
-msgid "No browser is installed on your system, Please install one if you want to browse the help system"
+msgid "Scannerdrake will not be started now."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/scannerdrake:54 standalone/scannerdrake:446
#, c-format
-msgid "Remember this password"
+msgid "Searching for configured scanners ..."
msgstr ""
-#: ../../install_steps_gtk.pm:1
+#: standalone/scannerdrake:58 standalone/scannerdrake:450
#, c-format
-msgid "due to unsatisfied %s"
+msgid "Searching for new scanners ..."
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/scannerdrake:66 standalone/scannerdrake:472
#, c-format
-msgid "Internet Connection Sharing is now enabled."
+msgid "Re-generating list of configured scanners ..."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/scannerdrake:88 standalone/scannerdrake:129 standalone/scannerdrake:143
#, c-format
-msgid ""
-"\t-Network by SSH.\n"
-""
+msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:91
#, c-format
-msgid " If the desired printer was auto-detected, simply choose it from the list and then add user name, password, and/or workgroup if needed."
+msgid "%s found on %s, configure it automatically?"
msgstr ""
-#: ../../help.pm:1 ../../install_interactive.pm:1
+#: standalone/scannerdrake:103
#, c-format
-msgid "Use the free space on the Windows partition"
+msgid "%s is not in the scanner database, configure it manually?"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/scannerdrake:118
#, c-format
-msgid "%s found on %s, configure it automatically?"
+msgid "Select a scanner model"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/scannerdrake:119
#, c-format
-msgid "Remove a network interface"
+msgid " ("
msgstr ""
-#: ../../Xconfig/various.pm:1
+#: standalone/scannerdrake:120
#, c-format
-msgid ""
-"XFree86 driver: %s\n"
-""
+msgid "Detected model: %s"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:122
#, c-format
-msgid ""
-"This host/network is already in the list, it cannot be added again.\n"
-""
+msgid ", "
msgstr ""
-#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: standalone/scannerdrake:123
#, c-format
-msgid "Choose the packages you want to install"
+msgid "Port: %s"
msgstr ""
-#: ../../lang.pm:1
+#: standalone/scannerdrake:149
#, c-format
-msgid "Papua New Guinea"
+msgid "The %s is not known by this version of Scannerdrake."
msgstr ""
-#: ../../printer/main.pm:1
+#: standalone/scannerdrake:157 standalone/scannerdrake:171
#, c-format
-msgid "Multi-function device on a parallel port"
+msgid "Do not install firmware file"
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/scannerdrake:161 standalone/scannerdrake:213
#, c-format
-msgid "Serbian (cyrillic)"
+msgid "It is possible that your %s needs its firmware to be uploaded everytime when it is turned on."
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/scannerdrake:162 standalone/scannerdrake:214
#, c-format
-msgid "(detected %s)"
+msgid "If this is the case, you can make this be done automatically."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/scannerdrake:163 standalone/scannerdrake:217
#, c-format
-msgid "Enter the directory where backups are stored"
+msgid "To do so, you need to supply the firmware file for your scanner so that it can be installed."
msgstr ""
-#: ../../standalone/draksplash:1
+#: standalone/scannerdrake:164 standalone/scannerdrake:218
#, c-format
-msgid "Make kernel message quiet by default"
+msgid "You find the file on the CD or floppy coming with the scanner, on the manufacturer's home page, or on your Windows partition."
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:166 standalone/scannerdrake:225
#, c-format
-msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+msgid "Install firmware file from"
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/scannerdrake:168 standalone/scannerdrake:176 standalone/scannerdrake:227 standalone/scannerdrake:234
#, c-format
-msgid "The DHCP end range"
+msgid "CD-ROM"
msgstr ""
-#: ../../any.pm:1
+#: standalone/scannerdrake:169 standalone/scannerdrake:178 standalone/scannerdrake:228 standalone/scannerdrake:236
#, c-format
-msgid "Creating bootdisk..."
+msgid "Floppy Disk"
msgstr ""
-#: ../../standalone/net_monitor:1
+#: standalone/scannerdrake:170 standalone/scannerdrake:180 standalone/scannerdrake:229 standalone/scannerdrake:238
#, c-format
-msgid "Wait please, testing your connection..."
+msgid "Other place"
msgstr ""
-#: ../../install_interactive.pm:1
+#: standalone/scannerdrake:186
#, c-format
-msgid "Bringing down the network"
+msgid "Select firmware file"
msgstr ""
-#: ../../services.pm:1
+#: standalone/scannerdrake:189 standalone/scannerdrake:248
#, c-format
-msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+msgid "The firmware file %s does not exist or is unreadable!"
msgstr ""
-#: ../../network/netconnect.pm:1 ../../standalone/drakconnect:1
+#: standalone/scannerdrake:212
#, c-format
-msgid "Login ID"
+msgid "It is possible that your scanners need their firmware to be uploaded everytime when they are turned on."
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/scannerdrake:216
#, c-format
-msgid "DHCP Client"
+msgid "To do so, you need to supply the firmware files for your scanners so that it can be installed."
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/scannerdrake:219
#, c-format
-msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"<span foreground=\"royalblue3\">Version:</span> %s\n"
-"<span foreground=\"royalblue3\">Author:</span> Thierry Vignaud &lt;tvignaud@mandrakesoft.com&gt;\n"
-"\n"
-""
+msgid "If you have already installed your scanner's firmware you can update the firmware here by supplying the new firmware file."
msgstr ""
-#: ../../standalone/drakgw:1 ../../standalone/drakgw:1
+#: standalone/scannerdrake:221
#, c-format
-msgid "dismiss"
+msgid "Install firmware for the"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:244
#, c-format
-msgid "Printing/Scanning on \"%s\""
+msgid "Select firmware file for the %s"
msgstr ""
-#: ../../standalone/drakfloppy:1
+#: standalone/scannerdrake:270
#, c-format
-msgid "omit raid modules"
+msgid "The firmware file for your %s was successfully installed."
+msgstr ""
+
+#: standalone/scannerdrake:280
+#, c-format
+msgid "The %s is unsupported"
msgstr ""
-#: ../../services.pm:1
+#: standalone/scannerdrake:285
#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
+"The %s must be configured by printerdrake.\n"
+"You can launch printerdrake from the Mandrake Control Center in Hardware section."
msgstr ""
-#: ../../keyboard.pm:1
+#: standalone/scannerdrake:289 standalone/scannerdrake:296 standalone/scannerdrake:326
#, c-format
-msgid "Irish"
+msgid "Auto-detect available ports"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/scannerdrake:291 standalone/scannerdrake:337
#, c-format
-msgid "Sunday"
+msgid "Please select the device where your %s is attached"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/scannerdrake:292
#, c-format
-msgid "Internet Connection Configuration"
+msgid "(Note: Parallel ports cannot be auto-detected)"
msgstr ""
-#: ../../modules/parameters.pm:1
+#: standalone/scannerdrake:294 standalone/scannerdrake:339
#, c-format
-msgid "comma separated numbers"
+msgid "choose device"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/scannerdrake:328
#, c-format
-msgid "Once you've selected a device, you'll be able to see the device information in fields displayed on the right frame (\"Information\")"
+msgid "Searching for scanners ..."
msgstr ""
-#: ../../standalone/drakperm:1
+#: standalone/scannerdrake:362
#, c-format
-msgid "Move selected rule up one level"
+msgid ""
+"Your %s has been configured.\n"
+"You may now scan documents using \"XSane\" from Multimedia/Graphics in the applications menu."
+msgstr ""
+
+#: standalone/scannerdrake:386
+#, c-format
+msgid ""
+"The following scanners\n"
+"\n"
+"%s\n"
+"are available on your system.\n"
+""
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/scannerdrake:387
#, c-format
msgid ""
"The following scanner\n"
@@ -17734,270 +17635,281 @@ msgid ""
""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:390 standalone/scannerdrake:393
#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
+msgid ""
+"There are no scanners found which are available on your system.\n"
+""
msgstr ""
-#: ../../install_interactive.pm:1
+#: standalone/scannerdrake:407
#, c-format
-msgid "I can't find any room for installing"
+msgid "Search for new scanners"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:413
#, c-format
-msgid "Default printer"
+msgid "Add a scanner manually"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/scannerdrake:420
#, c-format
-msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
-""
+msgid "Install/Update firmware files"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/scannerdrake:426
#, c-format
-msgid "Modify RAID"
+msgid "Scanner sharing"
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/scannerdrake:485 standalone/scannerdrake:650
#, c-format
-msgid "I have detected an ISDN PCI card, but I don't know its type. Please select a PCI card on the next screen."
+msgid "All remote machines"
msgstr ""
-#: ../../any.pm:1
+#: standalone/scannerdrake:497 standalone/scannerdrake:800
#, c-format
-msgid "Add user"
+msgid "This machine"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/scannerdrake:537
#, c-format
-msgid ""
-"RAID-disks %s\n"
-""
+msgid "Here you can choose whether the scanners connected to this machine should be accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../lang.pm:1
+#: standalone/scannerdrake:538
#, c-format
-msgid "Liberia"
+msgid "You can also decide here whether scanners on remote machines should be made available on this machine."
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/scannerdrake:541
#, c-format
-msgid "Could not install the packages needed to set up a scanner with Scannerdrake."
+msgid "The scanners on this machine are available to other computers"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/scannerdrake:543
#, c-format
-msgid "Choose your keyboard"
+msgid "Scanner sharing to hosts: "
msgstr ""
-#: ../../standalone/drakgw:1
+#: standalone/scannerdrake:557
#, c-format
-msgid ""
-"Please enter the name of the interface connected to the internet.\n"
-"\n"
-"Examples:\n"
-"\t\tppp+ for modem or DSL connections, \n"
-"\t\teth0, or eth1 for cable connection, \n"
-"\t\tippp+ for a isdn connection.\n"
-""
+msgid "Use scanners on remote computers"
msgstr ""
-#: ../../steps.pm:1
+#: standalone/scannerdrake:560
#, c-format
-msgid "Format partitions"
+msgid "Use the scanners on hosts: "
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:587 standalone/scannerdrake:659 standalone/scannerdrake:809
#, c-format
-msgid "Automatic correction of CUPS configuration"
+msgid "Sharing of local scanners"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: standalone/scannerdrake:588
#, c-format
-msgid "Running \"%s\" ..."
+msgid "These are the machines on which the locally connected scanner(s) should be available:"
msgstr ""
-#: ../../harddrake/v4l.pm:1
+#: standalone/scannerdrake:599 standalone/scannerdrake:749
#, c-format
-msgid "enable radio support"
+msgid "Add host"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: standalone/scannerdrake:605 standalone/scannerdrake:755
#, c-format
-msgid "Scanner sharing to hosts: "
+msgid "Edit selected host"
msgstr ""
-#: ../../diskdrake/interactive.pm:1
+#: standalone/scannerdrake:614 standalone/scannerdrake:764
#, c-format
-msgid "Loopback file name: %s"
+msgid "Remove selected host"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:638 standalone/scannerdrake:646 standalone/scannerdrake:651 standalone/scannerdrake:697 standalone/scannerdrake:788 standalone/scannerdrake:796 standalone/scannerdrake:801 standalone/scannerdrake:847
#, c-format
-msgid "Please choose the printer to which the print jobs should go."
+msgid "Name/IP address of host:"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/scannerdrake:660 standalone/scannerdrake:810
#, c-format
-msgid "Do not transfer printers"
+msgid "Choose the host on which the local scanners should be made available:"
msgstr ""
-#: ../../help.pm:1
+#: standalone/scannerdrake:671 standalone/scannerdrake:821
#, c-format
-msgid "Delay before booting the default image"
+msgid ""
+"You must enter a host name or an IP address.\n"
+""
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/scannerdrake:682 standalone/scannerdrake:832
#, c-format
-msgid "Use Hard Disk to backup"
+msgid ""
+"This host is already in the list, it cannot be added again.\n"
+""
msgstr ""
-#: ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1 ../../standalone/drakbackup:1
+#: standalone/scannerdrake:737
#, c-format
-msgid "Configure"
+msgid "Usage of remote scanners"
msgstr ""
-#: ../../scanner.pm:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1 ../../standalone/scannerdrake:1
+#: standalone/scannerdrake:738
#, c-format
-msgid "Scannerdrake"
+msgid "These are the machines from which the scanners should be used:"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: standalone/scannerdrake:898
#, c-format
-msgid "Warning, another Internet connection has been detected, maybe using your network"
+msgid "Your scanner(s) will not be available on the network."
msgstr ""
-#: ../../standalone/drakbackup:1
+#: standalone/service_harddrake:49
#, c-format
-msgid "Backup Users"
+msgid ""
+"Some devices in the \"%s\" hardware class were removed:\n"
+""
msgstr ""
-#: ../../network/netconnect.pm:1
+#: standalone/service_harddrake:53
#, c-format
msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one."
+"Some devices were added: %s\n"
+""
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: standalone/service_harddrake:94
#, c-format
-msgid "Select Printer Spooler"
+msgid "Hardware probing in progress"
msgstr ""
-#: ../../standalone/drakboot:1
+#: steps.pm:14
#, c-format
-msgid "Create new theme"
+msgid "Language"
msgstr ""
-#: ../../standalone/logdrake:1
+#: steps.pm:15
#, c-format
-msgid "Mandrake Tools Explanation"
+msgid "License"
msgstr ""
-#: ../../standalone/drakpxe:1
+#: steps.pm:16
#, c-format
-msgid "No image found"
+msgid "Configure mouse"
msgstr ""
-#: ../../install_steps.pm:1
+#: steps.pm:17
#, c-format
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-""
+msgid "Hard drive detection"
msgstr ""
-#: ../advertising/06-development.pl:1
+#: steps.pm:18
#, c-format
-msgid "Mandrake Linux 9.2: the ultimate development platform"
+msgid "Select installation class"
msgstr ""
-#: ../../standalone/scannerdrake:1
+#: steps.pm:19
#, c-format
-msgid "Detected model: %s"
+msgid "Choose your keyboard"
msgstr ""
-#: ../../standalone/drakedm:1
+#: steps.pm:21
#, c-format
-msgid ""
-"X11 Display Manager allows you to graphically log\n"
-"into your system with the X Window System running and supports running\n"
-"several different X sessions on your local machine at the same time."
+msgid "Partitioning"
msgstr ""
-#: ../../security/help.pm:1
+#: steps.pm:22
#, c-format
-msgid "if set to yes, run the daily security checks."
+msgid "Format partitions"
msgstr ""
-#: ../../lang.pm:1
+#: steps.pm:23
#, c-format
-msgid "Azerbaijan"
+msgid "Choose packages to install"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: steps.pm:24
#, c-format
-msgid "Device name to use for backup"
+msgid "Install system"
msgstr ""
-#: ../../standalone/drakbackup:1
+#: steps.pm:25
#, c-format
-msgid "No tape in %s!"
+msgid "Root password"
msgstr ""
-#: ../../standalone/drakhelp:1
+#: steps.pm:26
#, c-format
-msgid ""
-" --doc <link> - link to another web page ( for WM welcome frontend)\n"
-""
+msgid "Add a user"
msgstr ""
-#: ../../keyboard.pm:1
+#: steps.pm:27
#, c-format
-msgid "Dvorak (US)"
+msgid "Configure networking"
msgstr ""
-#: ../../standalone/harddrake2:1
+#: steps.pm:28
#, c-format
-msgid "this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgid "Install bootloader"
msgstr ""
-#: ../../printer/printerdrake.pm:1
+#: steps.pm:29
#, c-format
-msgid "How is the printer connected?"
+msgid "Configure X"
msgstr ""
-#: ../../security/level.pm:1
+#: steps.pm:31
#, c-format
-msgid "Security level"
+msgid "Configure services"
msgstr ""
-#: ../../standalone/draksplash:1
+#: steps.pm:32
#, c-format
-msgid "final resolution"
+msgid "Install updates"
msgstr ""
-#: ../../help.pm:1 ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: steps.pm:33
#, c-format
-msgid "Services"
+msgid "Exit install"
msgstr ""
-#: /home/srtxg/ftp/Mandrake/cooker/gi/move/move.pm:1
+#: ugtk2.pm:897
#, c-format
-msgid "Auto configuration"
+msgid "utopia 25"
msgstr ""
-#: ../../Xconfig/card.pm:1
+#: ugtk2.pm:1044
#, c-format
-msgid "4 MB"
+msgid "Is this correct?"
+msgstr ""
+
+#: ugtk2.pm:1167
+#, c-format
+msgid "Expand Tree"
+msgstr ""
+
+#: ugtk2.pm:1168
+#, c-format
+msgid "Collapse Tree"
+msgstr ""
+
+#: ugtk2.pm:1169
+#, c-format
+msgid "Toggle between flat and group sorted"
+msgstr ""
+
+#: wizards.pm:94
+#, c-format
+msgid ""
+"%s is not installed\n"
+"Click \"Next\" to install or \"Cancel\" to quit"
+msgstr ""
+
+#: wizards.pm:98
+#, c-format
+msgid "Installation failed"
msgstr ""
diff --git a/perl-install/share/po/uz@Cyrl.po b/perl-install/share/po/uz@Cyrl.po
index 408df9d77..4f627c711 100644
--- a/perl-install/share/po/uz@Cyrl.po
+++ b/perl-install/share/po/uz@Cyrl.po